Forums

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

Home Forums CSS Problems with simple JQuery functions (hide/show) Re: Problems with simple JQuery functions (hide/show)

#50306
RhapX
Member

Make sure you’re loading the jQuery functions you’re wanting to use.

Code:
$(document).ready(function()
{
$(“#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.