Apologies for asking what might seem like a silly question.
I have a basic css file with a class called "hide" that hides an element (how cool!). I use simple javascript to unhide the element:
$(document).ready(function(){
var hiddenElement = $("p.hide");
hiddenElement.removeClass("hide")
});
This approach works smoothly in Firefox and Chrome, however, in Opera and IE, it requires me to manually reload the page in order to see the effect.
Could someone please guide me to resources on how to achieve this correctly?