jquery : How to unbind dynamically created elements?

javascript, jquery

Solution

Use `die()` function for this

Read http://api.jquery.com/die

Also in Jquery-1.9 these `functions` are `removed`

For this you can use `on` and `off`

Read http://api.jquery.com/on and http://api.jquery.com/off

Problem

I have buttons created dynamically. I know that bind/unbind is only applicable for elements not created dynamically. To add functionality I use `.live()` which works perfectly. My problem is Idk how to remove the functionality. Please help.

Original source