JQuery in DELPHI win32

Can i use jQuery in a win32 application?

I saw interesting material created using jQuery, I like to know if it can be used in win32 applications.

Like so many others, I don't want to switch to .NET or the framework.

+4
source share
4 answers

jQuery is not supported on the 32-bit compiler for Delphi.

However, jQuery can be used with IntraWeb , which can be used with Delphi to build web applications, but not for win32 applications. IntraWeb allows you to develop VCL Forms applications using Delphi, but deploy them on the Internet as standard HTML and JavaScript.

IntraWeb is included in the Delphi XE installation package.

+2
source

jQuery is a JavaScript library, and most of its functions are highly dependent on the (X) HTML DOM. What can you use JavaScript that embeds any JavaScript interpreter, but what will jQuery manipulate?

If you are looking for fast-paced application development with high-quality graphics and animation support and an XML-based user interface composition, you should definitely expect .NET / WPF (you don't seem to like Microsoft solutions, but you miss one of the best user interface interfaces - Windows Presentation Foundation and Silverlight), Adobe Air / Flex, JavaFX, Mozilla XUL ...

+2
source

You can embed TWebBrowser or Google Compact Embeddable Chromium in your Delphi application, and then download and execute jQuery from either files or resources.

+1
source

You can use the delphi component of TWebbrowse to load an html containing some jquery modules loaded from a local path.

0
source

All Articles