Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jquery and Jslint - '$' was used before it was defined

I have some third party javascript im working with, I added some jquery code into it the javascript file. But it seems to fail on the above code when validating using Jslint

'$' was used before it was defined. 

I can see at the top of the javascript file it states:

/*global alert: false, console: false, jQuery: false */ 

Im relatively new to Javascript, and JQuery, so any help would be welcome.

like image 934
user1555190 Avatar asked Aug 15 '13 11:08

user1555190


2 Answers

Add these options to your comments:

/*jslint browser: true*/ /*global $, jQuery, alert*/ 
like image 192
kernel Avatar answered Oct 02 '22 16:10

kernel


If you want to use variables provided by other scripts, then you need to say so:

/*global $ */ 
like image 39
Quentin Avatar answered Oct 02 '22 15:10

Quentin