Tagged Questions
6
votes
2answers
864 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).ready()');
});
...
2
votes
3answers
564 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 the browser I will be ...
1
vote
2answers
517 views
Another questionable jQuery Quiz answer at W3Schools
There is a jQuery quiz posted on the W3Schools site here...
http://www.w3schools.com/quiztest/quiztest.asp?qtest=jQuery
Question #16 is as follows,
Which jQuery function is used to prevent code ...
0
votes
0answers
55 views
jQuery's document ready faulty on Nokia? (Alert fixes jQuery in Nokia. Suggest alternatives?)
I have some jQuery running on a mobile web site that does some layout calculations and resizes a few elements.
This was working fine on the browsers we support--even Nokia's--but I then received ...
0
votes
2answers
58 views
Run functions on elements with a certain class as soon as the DOM is loaded, not using an event handler
I have a simple function which I want to run on all elements with a certain class. I want this function to be run as soon as the DOM is loaded; not upon an event handler.
Below is the code that will ...
-2
votes
3answers
46 views
The proper use of jQuery ready()
What is an example of a time where you would want to use jquery.ready()? When would you want the code to run before the DOM is fully constructed?
EDIT:
Sorry! That's not what I meant! I meant the ...