@dmhendricks/jquery-waituntilexists

jQuery plugin that runs handler function once specified element is inserted into the DOM.


Keywords
jquery, element, exists, listener, jquery-plugin
License
MIT
Install
npm install @dmhendricks/jquery-waituntilexists@1.0.0

Documentation

Total Downloads

jquery.waitUntilExists.js

jQuery plugin that runs handler function once specified element is inserted into the DOM.

Forked from: https://gist.github.com/PizzaBrandon/5709010

bower install jq.waituntilexists --save

Usage

$( '#selector' ).waitUntilExists( function() {
  // Do some magic
  console.log( this.id );
});