when I paste some text into this input It registers inputString as 0 until something is actually typed in there. is there a way to get the inputSting to update on paste? Thanks
$('#test').on('paste',function(){
var inputString = this.value;
if(inputString.length == 0) {
$('#text').html('nothing');
}else{
$('#text').html('something');