109
jQuery load()
The load () method is used to load a specific element. It attaches an event handler to load event. It was deprecated in jQuery 1.8 version of jQuery library.
The load event occurs when a specific element is loaded. It is generally used with a URL (image, script, frame, iframe), and the window object.
Note: On some browsers, the load event did not trigger if the image is cached.
Syntax:
It adds a function to the load event.
Parameters of jQuery load() event
Parameter | Description |
---|---|
Function | It is an essential parameter. It executes itself when the specified element is done loading. |
Example of jQuery load() event
Let’s take an example to demonstrate jQuery load() event.
Next TopicjQuery unload()