custom jquery events
by jacobwsmith
JavaScript
// Create custom event
$('body').on('custom', function(event, param1, param2) {
alert("on: " + param1 + "\n" + param2);
});
// Call custom event
$('body').trigger('custom', ['Custom', 'Event']);
// Remove custom event
$('body').off('custom');
// Call custom event
$('body').trigger('custom', ['Custom', 'Event']);
$('body').one('custom', function(event, param1, param2) {
alert("one: " + param1 + "\n" + param2);
});
$('body').trigger('custom', ['Custom', 'Event']);