i want to know main difference between
.live()
vs.
.bind() method of jquery
feedback
|
|
The main difference is that
| |||||
feedback
|
|
You should consider to use | |||||||||
feedback
|
|
I did a statistical analysis of 1) Single static element with an id using the click event:
2) Multiple static elements with a common class using the click event:
3) Multiple dynamic elements (first button creates second...) using the click event:
Interpret how you wish, but it seems to me that as dynamic elements increase on a page, .delegate() seems to have the best performance while static elements perform best with .bind(). Keep in mind that I am using a very simple click event triggering an alert. Different pages, with different environments (ie. CPU, multi-tab browsing, running threads, etc) will render differing results. I used this as a basic guideline for my decision to use one or the other. Please advise if you have come up with a different result. Thanks! | |||
|
feedback
|