Saved Bookmarks
| 1. |
What Is The Advantages Of Use Of Document.ready Functions In Jquery? |
|
Answer» Advantage of using $(document).READY(function () in jQuery is that the code inside this function will excecute only when the full page has been LOADED so that there will be no ERROR like the DOM OBJECT on which the Jquery has to execute is not loaded. Advantage of using $(document).ready(function () in jQuery is that the code inside this function will excecute only when the full page has been loaded so that there will be no error like the DOM object on which the Jquery has to execute is not loaded. |
|