How to correctly do something like the following without using jQuery.
$(document).ready(function(){
$("#someButton").click(function(){
alert("Hello");
});
});
Thanks.
|
How to correctly do something like the following without using jQuery.
Thanks. |
|||||||||||
|
|
The easiest way is:
This will work on all browsers but note that with this approach only one event handler can be attached to an event. Also notice that the If you want to attach multiple event handlers, you can use the DOM Level 2 Standard The simplest abstraction to get a cross-browser way to bind events is:
Then you can:
Be aware also that the Check an example here. |
||||
|
|
|
How about something like this?
|
|||
|
|
|
try this:
|
|||
|
|
|
This answer isn't so simple without jQuery, because there are two major styles (depending on which browser you are using) for hooking up events. If you don't use one of those two styles, then your events can overwrite each other. Here's the simpler/overwriting style:
But if you try and to the above twice, you'll only get one alert, because the second time will overwrite the first one. Alternatively you can do some browser/feature detection and then use the specific event mechanisms for specific browsers; for more info on that style check out QuirksMode.com: |
|||
|
|
|
As far as I know, onLoad is NOT same as On DOM Ready. On Load waits for all the assets to be loaded (images, other external files). whereas On DOM Ready only waits for HTML to be rendered and doesn't wait for assets to be loaded. Correct me if I'm wrong. |
|||
|