Skip to content

Instantly share code, notes, and snippets.

@Akellacom
Created August 20, 2014 19:12
Show Gist options
  • Save Akellacom/66109a4497065d79c781 to your computer and use it in GitHub Desktop.
Save Akellacom/66109a4497065d79c781 to your computer and use it in GitHub Desktop.
Хак для возвращения функции live в jquery
jQuery.fn.live = function (types, data, fn) {
jQuery(this.context).on(types,this.selector,data,fn);
return this;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment