Skip to content Skip to sidebar Skip to footer

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:

  1. You can’t use live for reusable widgets.

  2. stopPropagate() doesn’t work in live

  3. Live is slower

  4. Live isn’t chainable

Post a Comment for "What Are The Reasons That Live() And Bind() Are Deprecated Post Jquery 1.7"