Skip to content

Instantly share code, notes, and snippets.

@devdays
Created February 23, 2015 19:32
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/71d465ee7f59aff82b3f to your computer and use it in GitHub Desktop.
Save devdays/71d465ee7f59aff82b3f to your computer and use it in GitHub Desktop.
jQuery Widget _create
(function ($) {
$.widget("custom.clicker", {
_create: function () {
var startingValue = this.options.startingValue;
this.element.text("The starting value is " + startingValue);
}
});
}(jQuery));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment