What Are The Reasons That Live() And Bind() Are Deprecated Post JQuery 1.7
As of post jQuery 1.7 the .live() and .bind() are deprecated and instead of that .on() is being used. Both of these were great functions were working like charm. What is purpose of
Solution 1:
Quote from this article:
You can’t use live for reusable widgets.
stopPropagate() doesn’t work in live
Live is slower
Live isn’t chainable
Post a Comment for "What Are The Reasons That Live() And Bind() Are Deprecated Post JQuery 1.7"