jQuery
examples/jquery/index.html
<html> <head> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> <script type="text/javascript" src="code.js"></script> </head> <body> <h1 id="title"></h1> </body> </html> <script> console.log("hello"); </script>
examples/jquery/code.js
$(document).ready(function(){ $("#title").html("Hello jQuery"); });

Published on 2018-01-01
If you have any comments or questions, feel free to post them on the source of this page in GitHub. Source on GitHub.
Comment on this post