I found that jQuery change event on a textbox doesn\'t fire until I click outside the textbox.
HTML:
Try this:
$("#textbox").bind('paste',function() {alert("Change detected!");});
See demo on JSFiddle.