Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var someWidget = {
- init: function(container){
- this.container = container;
- $(this.container).on('click', '.item', this.onItemClick);
- // https://api.jquery.com/on/
- },
- dispose: function(){
- $(this.container).off('click', '.item', this.onItemClick);
- // https://api.jquery.com/off/
- }
- onItemClick: function(){
- //some processor
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment