Created
August 20, 2014 19:12
-
-
Save Akellacom/66109a4497065d79c781 to your computer and use it in GitHub Desktop.
Хак для возвращения функции live в jquery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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