How can i emulate the backspace key function when i press the up arrow?
This is what i have so far and its not working :
if ( e.keycode === 38 ) {
e.preventDefault();
$(e.target).trigger({
type: "keypress",
which: 8
};