Skip to content

Instantly share code, notes, and snippets.

@devdays
Created February 24, 2015 22:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devdays/9a4a81a177607d93e04d to your computer and use it in GitHub Desktop.
Save devdays/9a4a81a177607d93e04d to your computer and use it in GitHub Desktop.
Handling clicks in jQuery UI Widget
_create: function () {
...
this._on(this.elTitle, {
click: "_titleClick" // Note: function name must be passed as a string!
});
},
_titleClick: function (event) {
console.log(this); // 'this' is now the widget instance.
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment