Is there a jQuery plugin that can check our code before running it?
Example:
I am writing this:
jQuery('.myclass')css('color','red');
The plugin will show me some message like "analysis error string ..." because I forgot the period
Or:
function test() {
alert('test');
...
tet();
Message: Function tet()does not exist.
EDIT: maybe it could be some kind of Firefox plugin?
source
share