Home › Forums › CSS › Problems with simple JQuery functions (hide/show) › Re: Problems with simple JQuery functions (hide/show)
October 7, 2008 at 5:00 am
#50306
Member
Make sure you’re loading the jQuery functions you’re wanting to use.
Code:
$(document).ready(function()
{
$(“#boxContent”).hide();
})
{
$(“#boxContent”).hide();
})
This should be how all of your stuff should look. Basically it shows that jQuery is to be loaded once the DOM is finished loading. Should solve your problem.