What is the difference between the bind and live methods in jQuery?
In short: .bind() will only apply to the items you currently have selected in your jQuery object. .live() will apply to all current matching elements, as well as any you might add in the future. The underlying difference between them is that live() makes use of event bubbling. That is, when you click on a … Read more