I have a div in my php page that uses jQuery to hide it once the page has loaded. But is there a way to hide it from the very start of loadup?
The reason I ask is be
Why not add "display: none;" to the divs style attribute? Thats all JQuery's .hide() function does.