I want to execute a function every time the value of a specific input box changes. It almost works with $(\'input\').keyup(function), but nothing happe
$(\'input\').keyup(function)
This combination of events worked for me:
$("#myTextBox").on("input paste", function() { alert($(this).val()); });