This link explain it all that discouraged to use .bind.
If you already use .bind, then move it as .on instead and it still working perfectly.
Example:
$(".some-class").bind('paste', function () {})Should be changed into
$(".some-class").on('paste', function () {})Hope this help :)