Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Mobile Navigation Dropdown Re: Mobile Navigation Dropdown

#114615
JohnMotylJr
Participant

@JeremyEnglert,


@Senff
, is correct. You need to ecapsolate that bit of code in some type of anonymous function.


$(function() {
//.. Your code goes here...
})

or

$(document).ready(function() {
//.. Your code goes here...
})