JQuery syntax check

Does anyone know any jQuery syntax or checkers? Brackets are killing me.

+7
javascript jquery
source share
3 answers

JSLint and the live demo site JSFiddle will give you the opportunity to make sure that something is working properly.

As already mentioned, most IDEs will validate your Javascript. Eclipse, Netbeans, PHPEd etc. All have javascript checkers.

+2
source share

Check out JSLint to check JS code:

http://www.jslint.com/

Warning: JSLint will hurt your feelings.

+9
source share

This is JavaScript. Any IDE with a JavaScript parser should do. NetBeans has one.

+1
source share

All Articles