I have a textbox named title and I would like to block people from being able to paste to it so that whatever content is in that textbox the user created it themselves by typing into it.You can see from below that i'm using the title textbox on keyup because i am transferring its values to another textbox which is hidden and if a user pastes on the title textbox then it will not go into the other textbox .As stated above I would like to be able to do this in Jquery but I can't seem to findout how
$("#title").keyup(function (e) {
$('#title').live("cut copy paste", function (e) {
e.preventDefault();
});
$("#threader_title").val($(this).val());
});