Skip to content

Instantly share code, notes, and snippets.

@devdays
Created February 24, 2015 00:22
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/f6ef9ce6a3642af2f3fe to your computer and use it in GitHub Desktop.
Save devdays/f6ef9ce6a3642af2f3fe to your computer and use it in GitHub Desktop.
Destroy the Widget
(function ($) {
$.widget("custom.clicker", {
// the rest of the clicker is omitted
destroy: function () {
this.element.text("");
// Call the base destroy function.
$.Widget.prototype.destroy.call(this);
}
});
}(jQuery));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment