make jquery work at bottom of page
hi all
if there is requirement to keep scripts near closing body tag then how do you make your code work if its called near opening body tag ??
Just like this below code it doesnt work if jquery library is loaded near </body> closing tag.
But it works if jquery library is loaded in <head> tag.
Code:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Async Test</title>
</head>
<body>
<div>Loading...</div>
<script type="text/javascript">
$(document).ready(function () {
$('div').html('Hello world!');
});
</script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-rc1/jquery.min.js"></script>
</body>
</html>
how can i make this code work while loading jquery library at the bottom of page.
thanks
vineet