Answers for "check page loaded in jquery"

4

check if jquery is loaded

$(document).ready(function(){
  if (jQuery) {  
    // jQuery is loaded  
    alert("Yeah!");
  } else {
    // jQuery is not loaded
    alert("Doesn't Work");
  }
});
Posted by: Guest on April-15-2020
0

on page fully loaded jquery

$(window).load(function () {
    ....
});

If you have to wait for an iframe (and do not care about the assets, just the 
DOM) - try this:

$(document).ready(function() { 
    $('iframe').load(function() { 
       // do something
    });
});
Posted by: Guest on June-12-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language