Many time we use jQuery.This code is written when we execute our code when DOM is ready except images.like If our web page has images then it will not wait for loading of images and call and in one page we can apply many document.ready and it call one by one as coming sequence.we call document.ready in many ways like below and they have same functionality and it is jQuery specific event. when we work with
And if we talk about If our web page has images then it will wait for loading of images and then it call. then it is work when all DOM is ready including images so it is useful when on document load we want to work with images (calculation of image dimensions) and it is also jQuery specific event.
$(window).load(function() {
/** this is come when complete page is fully loaded, including all frames, objects and images **/
});
and one more thing don’t confuse with window load event with jQuery ajax load method
The onload event is a standard event in the DOM, while above two are specific to jQuery . this is also same functionality like The onload event occurs when an object has been loaded.like if we take a example of image and call onload event in image tag then it will call when image will load .generally we use it in body tag. but is the built-in JavaScript event.
it is call in HTML and JavaScript like
In HTML
<element onload="myFunction"></element>
In JS
object.onload=function(){/**your desire code**/};// here object can be window,body and etc
1) Here alert “call on body load” call immediately after body has been loaded
In HTML
<!-- on body onload call myFunction -->
<body onload="myFunction()">
In JavaScript
// myFunction() which will call on body load
function myFunction(){
alert("call on body load");
}
if we take a example related to image onload then it will look like below
2) Here alert “call on image load” call immediately after image has been loaded
In HTML
<!-- on image onload call myImageFunction() -->
<img src="image path src" onload="myImageFunction()">
// myFunction() which will call on image load
function myImageFunction(){
alert("call on image load");
}
No comments:
Post a Comment