Hello, sorry my question is dumb.
I have a simple css file with class hide, that makes an element hidden (wow!). I use simple javascript to unhide element:
$(document).ready(function(){
var a = $("p.hide");
a.removeClass("hide")
});
It works in Firefox, Chrome, but in Opera and IE I should manualy reload page to see an effect.
Can somebody tell me where to read how to fo it right?