Last Updated: February 25, 2016
·
2.27K
· Stereobit

Bind instance to element with jQuerys data method

Nice way to check if a element already have a instance of a method:

function() {
  var instance = this.data("yourFunction");

  if (instance) return;

  instance = new yourFunction();
  this.data("yourFunction", instance);
};