Guest User

Untitled

a guest
May 27th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. myClass = Class.create({
  2.  
  3. initialize: function() {
  4. $('container').on('click', 'div[id^="some_prefix_"]', this.handler.bindAsEventListener(this));
  5. },
  6.  
  7. handler: function(e, elem) {
  8. console.log(e);
  9. console.log(elem);
  10. console.log(this);
  11. }
  12. });
Add Comment
Please, Sign In to add comment