Is it possible to speed up page loading by placing JavaScript before the closing </body>
tag? Consider this scenario:
<body>
Sample content
<script type="text/javascript" src="jQuery.js"></script>
<script type="text/javascript">
$(function(){
});
</script>
</body>