Instead of using an event, pasteyou can use an event keyupthat fires if someone inserts, but also fires only after the input value has been updated.
UPDATE
@Micah ( @JohnnyO). , :
$('input').on('paste', function () {
var that = this;
setTimeout(function () {
alert(that.value);
}, 0);
});
-, , , , . Chrome 21, -, , .
: http://jsfiddle.net/H4K4R/