Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the non-jQuery equivalent of $(document).ready()?

share|improve this question
2  
If you want to reproduce the jQuery's $(document).ready() event without using any library, give a look to this: stackoverflow.com/questions/1795089/… – CMS Feb 21 '10 at 5:47
Why is this downvoted? +1 from me. – alexn Feb 21 '10 at 12:05
@Alex the original question was worded very poorly. – Josh Einstein Feb 21 '10 at 17:47
@OP: check out page 89 of Pro JavaScript Techniques for a vanilla JavaScript implementation of $(document).ready() - books.google.com/… . It also uses the addEvent event binding abstraction written by Dean Edwards, the code of which is also in the book :) – Russ Cam Feb 21 '10 at 17:57

6 Answers

up vote 24 down vote accepted

The nice thing about $(document).ready() is that it fires before window.onload. The load function waits until everything is loaded, including external assets and images. $(document).ready, however, fires when the DOM tree is complete and can be manipulated. If you want to acheive DOM ready, without jQuery, you might check into this library. Someone extracted just the ready part from jQuery. Its nice and small and you might find it useful:

domready at Google Code

share|improve this answer
3  
Nice library @Doug, the only thing I don't like about it, is that uses browser sniffing heavily, seems that it's based on jQuery 1.2.x. Newer versions of jQuery (1.3+) don't do browser sniffing anymore, I like the idea, I might start something at github :-)... – CMS Feb 21 '10 at 18:30
@CMS- I'd be interested in contributing to such a project – Russ Cam Feb 21 '10 at 19:38
@CMS @Russ Cam ditto. I am dcneiner on github and would be happy to contribute if needed. – Doug Neiner Feb 22 '10 at 1:21
@Russ Cam, @Doug: excellent, my username at github is cms. – CMS Feb 22 '10 at 6:25
2  
DomReady code network! via @CMS on github: github.com/cms/domready/network – Kzqai Aug 23 '11 at 21:59
show 1 more comment

In plain vanilla JavaScript, with no libraries? It's an error. $ is simply an identifier, and is undefined unless you define it.

jQuery defines $ as it's own "everything object" (also known as jQuery so you can use it without conflicting with other libraries). If you're not using jQuery (or some other library that defines it), then $ will not be defined.

Or are you asking what the equivalent is in plain JavaScript? In that case, you probably want window.onload, which isn't exactly equivalent, but is the quickest and easiest way to get close to the same effect in vanilla JavaScript.

share|improve this answer

I believe you want window.onload

share|improve this answer
Bear in mind that most libraries do a lot more work behind the scenes for you than just wrapping "window.onload" to ensure the window content is really loaded -- if you are interested in handling this consistently across different browsers for something non-trivial, you'd be wise to look into a library implementation. – bmoeskau Feb 21 '10 at 6:40
1  
window.onload is not the same as $(document).ready(). The latter is an event for when the DOM is ready for manipulation, not when everything has loaded. (docs.jquery.com/…). It is actually a very complicated process to determine this for every browser (some have a domready event, some don't). Please don't use window.onload, it fires when everything in your page has loaded, which is often far after the page is displayed to the user. – Ryan Doherty Feb 21 '10 at 18:21

I don't think JavaScript has that function built in. It is jQuery specific.

share|improve this answer
2  
You're right, but that's probably why he's asking for the non-jQuery equivalent. – David Thomas Feb 21 '10 at 18:14
@ricebowl, the OP's original question asked nothing to that effect. It simply said "What is $(document).ready() in javascript". That's why many of the answers seem to make no sense now. – Josh Einstein Feb 21 '10 at 19:06
Then -having looked at the question's revision history- I offer you a +1 by way of an apology (I didn't, by the way, down-vote your answer; I'm not a fan of the whole down-voting option, I prefer to leave comments like the above). – David Thomas Feb 21 '10 at 22:31

The original question was "What is $(document).ready() in javascript?"

http://api.jquery.com/ready/

share|improve this answer
I appreciate the question was ambiguous when forst posted, but it's corrected now, and I think the poster meant 'what is $(document).ready() in raw JS?' rather than 'what does $(document).ready()' do? – nailer Nov 14 '12 at 15:41
Understood, but that wasn't what it said when I posted my answer. It's frustrating because now that the OP has changed the question, my answer looks completely irrelevant and thus gets downvoted. I shouldn't have to return to the question to check for updates and maintain my answer but it is what it is. – Josh Einstein Nov 15 '12 at 1:01

I found this question -> $(document).ready equivalent without jQuery I guess it neatly sums up what yoyu have been looking fo

share|improve this answer
this looks more like a comment than an answer! please post solutions as answers! – InfantPro'Aravind' Dec 26 '12 at 14:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.