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
They're effectively the same. However, using bind() allows you to make use of namespaced events. This is especially useful when writing plugins.
bind()