jQuery’s .bind() vs. .on()
问题 I found two great articles talking about the new function .on() : jquery4u.com, elijahmanor.com. Is there any way where the .bind() still is better to use than .on() ? For example, I have a sample code that look like this: $("#container").click( function( e ) {} ) You can note that I just have one item retrieved by the selector and in my case, the <div> named #container already exists when my page was loaded; not added dynamically. It’s important to mention that I use the latest version of