can anyone tell me why this code is not running as expected
$(document).ready(function () {
$('#search_box').on('paste keyup change', 'input', function () {
alert("hi");
}
});
});
the code is working in another page, when i copied it its not working .
I know it has to be simple but I dont get it.
This will let you control “paste” event over search_box control…