SanSYS

Untitled

Jun 13th, 2015
5,271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var someWidget = {
  2.     init: function(container){
  3.         this.container = container;
  4.  
  5.         $(this.container).on('click', '.item', this.onItemClick);
  6.         // https://api.jquery.com/on/
  7.     },
  8.  
  9.     dispose: function(){
  10.         $(this.container).off('click', '.item', this.onItemClick);
  11.         // https://api.jquery.com/off/
  12.     }
  13.  
  14.     onItemClick: function(){
  15.         //some processor
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment