.bind must replaced by .on since deprecated 1.8.3 jQ core....?

.bind must replaced by .on since deprecated 1.8.3 jQ core…?

Replace your .bind() calls with .on():

// before
$('#my-element').bind('click', function() { //... });

// after
$('#my-element').on('click', function() { //... });