I\'m using this jQuery code
$(\'input\').bind(\'change mouseup\', ... )
to detect if user drag text somewhere into my input & change it
jQuery 1.10.1 - I had success with this...
$('body').on('input paste drop', '#txt-some-id, function() { $('#btn-some-id').prop("disabled", $(this).val().length === 0); });