load() code example

Example 1: ajax load spesific element from another page

$.ajax({
   url:href,
   type:'GET',
   success: function(data){
       $('#container').html($(data).find('#content').html());
   }
});

Example 2: load js

// Log a message when the page is fully loaded:

window.addEventListener('load', (event) => {
  console.log('page is fully loaded');
});

Example 3: load js

// The same, but using the onload event handler property:

window.onload = (event) => {
  console.log('page is fully loaded');
};

Example 4: load js

window.addEventListener('load', (event) => {
  console.log('page is fully loaded');
});