in jquery $(document).ready(function) or $(function) , how could I do the same thing without jquery, and I need browser compatiable, and allow to attach more than one function.
|
This is the way jQuery wraps the functions you're looking for - the snippet does not need jQuery, and is cross-browser compatible. I've replaced all calls to jQuery.ready() with What goes on in here:
Lifted from jQuery 1.4.3, functions bindReady() and DOMContentLoaded:
That's 51 lines of pure JavaScript code, just to register the event reliably. As far as I know, there is no easier method. Goes to show what the wrappers like jQuery are good for: they wrap the capability sniffing and ugly compatibility issues so that you can focus on something else. |
|||||||||||||||||||||
|
|
|||||||||||||
|
|
Here's a method I use that seems to work reliably
Pretty simple, it just keeps trying to append an empty I'd be happy to hear if there are any problems with this method. It has worked well for me, but I have not done the extensive testing that would be natural to any popular Javascript framework. |
|||||
|
|
I've seen lots of different ways of trying to do this. The simplest way (suggested by yahoo initially, I think) is to just call your initializer function after the close body tag, a bit obtrusive, but it's a single line. |
|||
|
|
EditThe DomReady event does not exist nativly in javascript. You can implement your own by following some wonderful work done by people like Dean Edwards here and here with those in place you can perform a similar event attachment process on document instead of window. Check out user83421's answer to How do I add an additional window.onload event in Javascript To recap here as well.
|
|||||
|
|
|
This is all you need if you're supporting IE9+ and modern (2013) versions of Chrome, FF, Safari, etc.
|
|||
|
|
DOMContentLoaded. IE does not support this, soonreadystatechangeis used instead. – Šime Vidas Oct 21 '10 at 15:52document.readyStatehaving the value"complete"– Šime Vidas Oct 21 '10 at 15:54