I am using lazy load jquery plugin.
It tells me to put this in my code to activate it:
$("img").lazyload();
Do I have to put this in $(document).ready()
? or can I just put it at the very top of the page:
<head>
<script type="text/javascript">
$("img").lazyload();
$(document).ready...{}
</script>
</head>