, jquery, manaully
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
</head>
Google CDN
<head>
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.3.min.js"></script>
</head>
Microsoft CDN.
jquery -.
<script type="text/javascript">
$(window).on('load",function(){
// your code
});
</script>
, , jquery . javasript, jquery: .
<script>
window.onload = function() {
}
</script>
;)
: , ! - ( ),
$(document).ready(function(){
});
jquery
document.addEventListener("DOMContentLoaded", function(event) {
});
javascript