Does anyone know of any JQuery syntax validators or checkers? The braces are killing me.
+1
A:
It's JavaScript. Any IDE with JavaScript syntax checker should do. NetBeans has one.
Mchl
2010-07-28 20:33:10
So has Eclipse and KomodoEdit.
Felix Kling
2010-07-28 20:33:34
Visual Studio 2008 / 2010 does too.
Rafael Belliard
2010-07-28 20:34:33
+5
A:
Check out JSLint for validating JS code:
Warning: JSLint will hurt your feelings
nicholasklick
2010-07-28 20:55:16
and JS lint is great with making your code look proper too. Just define the global variable $ and JSLint will check your JS code.
Bob Fincheimer
2010-07-28 20:56:52
+1
A:
JSLint and a live demo site JSFiddle will give you the ability to make sure something is valid and runs properly.
As said, most IDE's will validate your Javascript. Eclipse, Netbeans, PHPEd and so on all have javascript checkers.
Paul Dragoonis
2010-07-28 21:07:16
JSfiddler allows you to select a JS library such as jQuery, input some HTML and write some javascript to execute against your HTML.
Paul Dragoonis
2010-07-29 09:52:00