How to do jquery code AFTER page loading?

Posted by Alex on Stack Overflow See other posts from Stack Overflow or by Alex
Published on 2010-05-28T01:59:22Z Indexed on 2010/05/28 2:01 UTC
Read the original article Hit count: 232

Filed under:

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?

© Stack Overflow or respective owner

Related posts about jQuery