Tagged Questions
7
votes
7answers
2k views
Using DOMContentReady considered anti-pattern by Google
A Google Closure library team member asserts that waiting for DOMContentReady event is a bad practice.
The short story is that we don't want
to wait for DOMContentReady (or worse
the load ...
5
votes
1answer
6k views
jQuery: $(document).ready() too slow in IE
What would be the preferred way of hiding an element before the page is rendered?
$(document).ready() works just fine for firefox, but sometimes (connection to the server seems to be a major issue in ...
1
vote
3answers
4k views
jQuery - Object Expected on IE and $(document).ready(function() {});
I have a page ([LINK REMOVED]) that works completely well in FireFox and Chrome, but for some reason I am getting an "Object Expected" error in most, if not all versions of IE.
The error occurs on ...
0
votes
5answers
153 views
jquery(document).ready() fails to run in IE 7+
This seems like really simple problem to me, but despite googling every possible search string, I cannot find an answer.
I'm using jquery 1.5.1 and trying to use the $(document).ready() function to ...