How to change context of a function dynamically


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. var obj = { method: function(){} };
  2. $("#foo").click( jQuery.proxy( obj, "method" ) );
  3. $("#foo").unbind( "click", obj.method );
  4.  

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.