“jQuery aguarde o elemento carregar” Respostas de código

jQuery aguarde o elemento existir

var checkExist = setInterval(function() {
   if ($('#the-canvas').length) {
      console.log("Exists!");
      clearInterval(checkExist);
   }
}, 100); // check every 100ms
mattia896

jQuery aguarde o elemento carregar

// Call the below function
waitForElementToDisplay("#div1",function(){alert("Hi");},1000,9000);

function waitForElementToDisplay(selector, callback, checkFrequencyInMs, timeoutInMs) {
  var startTimeInMs = Date.now();
  (function loopSearch() {
    if (document.querySelector(selector) != null) {
      callback();
      return;
    }
    else {
      setTimeout(function () {
        if (timeoutInMs && Date.now() - startTimeInMs > timeoutInMs)
          return;
        loopSearch();
      }, checkFrequencyInMs);
    }
  })();
}
Indian Gooner

Respostas semelhantes a “jQuery aguarde o elemento carregar”

Perguntas semelhantes a “jQuery aguarde o elemento carregar”

Mais respostas relacionadas para “jQuery aguarde o elemento carregar” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código