Skip to content

Instantly share code, notes, and snippets.

@nbubna
nbubna / trigger.simple.js
Created July 6, 2012 21:58
trigger.js (without special features)
$(document).on('click', '[trigger]', function(e) {
var el = $(e.target).closest('[trigger]');
el.trigger(el.attr('trigger'));
});