I\'m really frustrated because Try this if not, jQuery should solve it. Start by checking that your code is correct using tools like these:Display:none
isn\'t working on a element in IE 7, what do I do? It works perfect on FF, Chrome etc...
Display:none
should be display:none
, for one thing.div{
display:none;
}
$(document).ready(function(){
$("div").hide();
});