I\'m using this jQuery code
$(\'input\').bind(\'change mouseup\', ... )
to detect if user drag text somewhere into my input & change it
var inputField = $("input");
var oldValue = inputField.text();
inputField.bind("drop", function() {
//when the drop happens the input value will not be updated yet
//use a timeout to allow the input value to change.
setTimeout($.proxy(function() {
if (this.value !== oldValue) {
$(this).trigger('change');
}
}, this), 0);
});
$("input").bind("change", function() {
oldValue = this.value;
});
run the code: http://jsfiddle.net/paulwesterberg/FJuvz/5/