This is my first question.
I have a page for image upload on my website. I made an <iframe> to avoid the whole page to refresh, and I’m using jQuery. When I tested it in Firefox, Firebug returns me two errors:
c.defaultView.getComputedStyle(h, null) is null
$ is not defined => $('#omega').hide();
And it is not working. But when I tested it in other browsers, like IE5, IE6, IE7, IE9 and Opera, it works perfectly.
Why it is not working on Firefox?
The final solution was to update jQuery to latest version.
This is a bug that was fixed in version 1.6.1 (http://blog.jquery.com/2011/05/12/jquery-1-6-1-released/, item #8763)