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..
});
Showing posts with label Observer Design Pattern. Show all posts
Showing posts with label Observer Design Pattern. Show all posts
Saturday, January 18, 2014
Observer Design Pattern in Jquery
Subscribe to:
Posts (Atom)