views:

409

answers:

4

Possible Duplicate:
Good JavaScript IDE with JQuery support ?

is there any free Jquery IDE or online tool? to write and test jquery easily and visually.

With jquery 1.4 intellisense and WYSIWYG.

+2  A: 

http://www.ixedit.com/

IxEdit is a JavaScript-based interaction design tool for the web. With IxEdit, designers can practice DOM-scripting without coding to change, add, move, or transform elements dynamically on your web pages. Especially, IxEdit must be useful to try various interactions rapidly in the prototyping phase of your web application.

Sky Sanders
Cools is it free?
metal-gear-solid
@metal - yes it is free. It is an interesting tool. But, VS Express is great for design time support. I wrote about it a bit here:http://www.codeproject.com/Articles/60661/Visual-Studio-JavaScript-Intellisense-Revisited.aspx
Sky Sanders
+10  A: 

Visual Studio 2010 Express. Seriously.

They made it a point to enable very, very solid IntelliSense support for jQuery.

And in fact, the jQuery site itself distributes a version of jquery.js that's annotated to help Visual Studio auto-complete intelligently: http://code.jquery.com/jquery-1.4.1-vsdoc.js

sblom
@sblom - Thanks. OK going to download....Although I use Dreamweaver and mostly work with PHP but if VWD is free. and it's good for jquery development then I will do my jQuery work in it.
metal-gear-solid
+6  A: 

Aptana works nice too.

Justin
Oh and like sblom said VS2010 works good too. You can even have it pull up code completion on your own libs with a little bit of comments.
Justin
get the best explanation of VS JavaScript intellisense anywhere on the web as of today here: http://www.codeproject.com/Articles/60661/Visual-Studio-JavaScript-Intellisense-Revisited.aspx
Sky Sanders
yep, Netbeans does a good job with jQuery intellisense
Shiki
+1  A: 

Also, jsFiddle is a great free browser-based tool that's perfect for trying out ideas and could potentially work as a primary IDE (for small projects). It includes jQuery and lots of other frameworks without having to add them in with <script> tags.

Trafalmadorian