Event v0.1.2 Github Repo

Live

event.live(events, selector, eventHandler);

You can JS events on elements that have been added to the page after the JS has been loaded.

Click here to trigger the 'live' event

Off

event.off(el, event, fn);

You can turn off events that were previously applied using the on method above.

clicking here will disabled the 'on' link below

On

event.on(el, event, fn);

You can listen for standard and custom (non-jQuery) JS events

This hasn't been clicked. click here to update

Ready

event.ready(fn);

You can detect when the document has finished loading everything except images:

Document is loading...

Resize-end

event.on(window, 'resizeend', fn);

You can know the moment (200ms) a user has finished resizing the browser

not re-sized.

Trigger

event.trigger(el, event);

You can trigger standard and custom (non-jQuery) JS events.

Click here to trigger the 'custom' event