Attach a trigger event for publisher
$('div').on('click', function(e) {
$(this).trigger('MyEvent',e,parameterValue);
});
Attach subscriber methods
$(document).on('MyEvent', function(e,parameterValue) {
//Do your stuffs with parameterValues..
});
No comments:
Post a Comment