I have to take the paste event of a text area using JQuery. I have tried the following code but it is not working...
$(document).ready(function() { $(\'#t
This is the most useful solution:
$("#item_name").bind("input change", function() {});
maybe change is not essential.