Can you list the difference between onload() and $(document).ready(function(){..}) functions in the using jQuery?
onload()
$(document).ready(function(){..})
body.onload() cares about both HTML structure and assoicated resources where as document.ready() cares only about the HTML structure.