Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting Deleted character

Tags:

javascript

in in Input field, if the user presses Backspace or Delete key, is there a way to get the deleted character.

I need to check it against a RegExp.

like image 268
user160820 Avatar asked Jul 06 '10 09:07

user160820


People also ask

Can you restore a deleted character in new world?

If you have deleted a character by mistake, unfortunately we are unable to recover it.

How long can you restore a deleted character wow?

Yes, within 120 days of deletion. If a character doesn't appear on your list, it means it was purged from the database because it was below level 50 and it was deleted too long ago. Purged characters cannot be restored by any means.

Do your wow characters get deleted?

Yes, within 120 days of deletion. After the above retention periods, deleted characters are purged from the database and will no longer be visible on the character restoration list.


1 Answers

Assuming the input box has an id 'input'. Here is how with least amount of code you can find out the last character from the input box.

document.getElementById("input").onkeydown = function(evt) {
  const t = evt.target;
  if (evt.keyCode === 8) { // for backspace key
    console.log(t.value[t.selectionStart - 1]);
  } else if (evt.keyCode === 46) { // for delete key
    console.log(t.value[t.selectionStart]);
  }
};
<input id="input" />
like image 74
Akshay Mittal Avatar answered Oct 30 '22 22:10

Akshay Mittal