I'm using jquery copy paste methods to do something when text is pasted into my text area
$(function(){
$("#input").bind({
paste : function(){
show_ln();
$("#t2").scrollTop($("#input").scrollTop());
}
});
});
But I want to do something else when any other keypress within #input
is done.
$("body").on("keypress", "#input", function(){
show_ln();
});
Is there any way to bind that second keypress to everything but a paste?