From: Dave Methvin Date: Tue, 18 Dec 2012 18:24:05 +0000 (-0500) Subject: Fix #13078. Remove .live() and .die(). Great rejoicing. X-Git-Tag: 1.9.0rc1~31 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=eed78cc321ed7e2b37fb34e32fbb528b24f61d6e;p=jquery.git Fix #13078. Remove .live() and .die(). Great rejoicing. --- diff --git a/src/event.js b/src/event.js index efbc0c287..adaba7673 100644 --- a/src/event.js +++ b/src/event.js @@ -940,15 +940,6 @@ jQuery.fn.extend({ return this.off( types, null, fn ); }, - live: function( types, data, fn ) { - jQuery( this.context ).on( types, this.selector, data, fn ); - return this; - }, - die: function( types, fn ) { - jQuery( this.context ).off( types, this.selector || "**", fn ); - return this; - }, - delegate: function( selector, types, data, fn ) { return this.on( types, selector, data, fn ); },