1.0.0 • Published 5 years ago

@tschallacka/jquery.render v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

A simple jQuery plugin for making event binding to the render event easier.

installation:

 npm install @tschallacka/jquery.render

$('#').render( callback )

callback

A function to call when the render event is triggered on the document.

Example:

 var $ = require('jquery');
 require('@tschallacka/jquery.render');
 
 $(document).render(function(){ 
     console.log('Have you heard of the tragedy of Darth Plageuis the wise?');
 });
1.0.0

5 years ago