@tschallacka/jquery.render
v1.0.0
Published
A jQuery plugin to extend it with a render method for easy method binding.
Downloads
3
Readme
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?');
});