Is there a plugin to validate jQuery code ?
Posted
by aurelien
on Stack Overflow
See other posts from Stack Overflow
or by aurelien
Published on 2010-05-07T11:15:37Z
Indexed on
2010/05/07
11:18 UTC
Read the original article
Hit count: 302
jQuery
I mean : is there a jQuery plugin which can check our code before launch it ?
Example:
I write this :
jQuery('.myclass')css('color','red');
The plugin will show me some message like 'parse error line ...' because I forgot a dot
Or :
function test() {
alert('test');
...
tet();
Message: The tet() function doesn't exist.
So...
What you do think ?
© Stack Overflow or respective owner