Tagged Questions

6
votes
2answers
259 views

Four variations of jQuery ready() — what’s the difference?

I've seen four different ways to tell jQuery to execute a function when the document is ready. Are these all equivalent? $(document).ready(function () { alert('$(document).read …
5
votes
4answers
2k views

JQuery: Why Unobtrusive JavaScript / Document Ready function rather than OnClick event?

I've just started looking at JQuery. I don't have any AJAX in my web application at present. My existing JavaScript in my HTML looks like: <form ...> <p>Find what? &l …
2
votes
4answers
144 views

Is checking for the readiness of the DOM overkill?

I'm developing a platform for developing desktop apps with web technologies. In the course of doing so I've been trying to get some document/on-ready functionality working with th …
2
votes
1answer
690 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 …
0
votes
0answers
34 views

ASP.NET Ajax Toolkit CalendarExtender not ready in $(document).ready?

Occasionally I'll use a ASP.NET Ajax Toolkit CalendarExtender and try to wire some javascript to its handlers. Since I use jQuery, I've do this using $(document).ready(). Most of …