What is readyevent in Jquery?

Content: jQuery

Posted On: Mar 16, 2011 Resource: PHPjQuery.com More (Source Content)
In Jquery, If we use the ready event after loaded the DOm function then only the function will fire. So that is fair for all events and triggers.

Example

$(document).ready(function() { //We can call any number of function and events and triggers. });

We can use Jquery instead of $ symbol in before document. When we use the another one library(for example dojo) that time we can use Jquery instead of $ Symbol.

Jquery(document).ready(function() { //We can call any number of function and events and triggers. });

Related Posts: