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)
Try this:
$("input").bind({ paste : function(){ $('#eventresult').text('paste behaviour detected!'); } })