How can I write
var menu = $('.something');
and use it in an external .js file like so:
$(menu).attr("class", "active");
I have also tried declaring the external js file after the inline code and it will not work.
|
|
|
|
|
|
|
As long as you define
Give that a try. |
||
|
|
|
|
Don't use the It is not a very good idea, though; It messes up your global namespace (and can thus create problems if you have multiple javascript files from different origins messing up the global namespace and overriding each other's variables). A cleaner solution would be setting up a global object with a very unique name, and then adding properties to it. For example:
Then somewhere else:
|
||||
|