load jquery code example
Example 1: jquery onload event
// A $( document ).ready() block.
$( document ).ready(function() {
console.log( "ready!" );
});
Example 2: ajax load spesific element from another page
$.ajax({
url:href,
type:'GET',
success: function(data){
$('#container').html($(data).find('#content').html());
}
});
Example 3: load js
// Log a message when the page is fully loaded:
window.addEventListener('load', (event) => {
console.log('page is fully loaded');
});
Example 4: jQuery - AJAX load() Method
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("#div1").load("demo_test.txt");
});
});
</script>
</head>
<body>
<div id="div1"><h2>Let jQuery AJAX Change This Text</h2></div>
<button>Get External Content</button>
</body>
</html>
Example 5: load js
// The same, but using the onload event handler property:
window.onload = (event) => {
console.log('page is fully loaded');
};
Example 6: load js
window.addEventListener('load', (event) => {
console.log('page is fully loaded');
});