I have a jquery token tagit plugin and I want to bind to the paste event to add items correctly.
I\'m able to bind to the paste event like so:
.b
This work on all browser to get pasted value. And also to creating common method for all text box.
$("#textareaid").bind("paste", function(e){ var pastedData = e.target.value; alert(pastedData); } )