1.0.0 • Published 4 years ago

@dmhendricks/jquery-waituntilexists v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

License NPM Downloads DigitalOcean Twitter BrowserStack

jquery.waitUntilExists.js

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

Original author: Brandon Belvin

npm install @dmhendricks/jquery-waituntilexists

Usage

<script src="https://cdn.jsdelivr.net/gh/dmhendricks/jquery-waituntilexists/jquery.waitUntilExists.min.js"></script>
$( '#selector' ).waitUntilExists( function() {

	// Perform some logic
	console.log( $( this ).attr( 'id' ) );

	// Optionally remove the listener when finished
	$( this ).waitUntilExists( 'remove' );

});

Analytics