How to do jquery code AFTER page loading?
- by Alex
If you want an event to work on your
page, you should call it inside the
$(document).ready() function.
Everything inside it will load as soon
as the DOM is loaded and before
the page contents are loaded.
I want to do javascript code only after the page contents are loaded how can I do that?