I understand the difference between Live and Bind but when should I use use .bind() over a \'standard\' event method as shown below.
.bind()
Are there any key differ
I use the explicit methods when available. I use the bind when a method isn't available like for window.onbeforeunload
The other time to use bind is if your are developing and switching between "live" and "bind".