Questions tagged as 'keyup'

2
answers

Keyup function in input when loading a modal

I'm implementing a function to change the password of the logged-in user. When I load the user's password into the input component it does not validate the loaded password, which is outside the rule established by the function below. I would lik...
asked by 28.12.2017 / 13:52
2
answers

KeyUP event should not activate with special keys

In my document I'm creating some shortcuts on the keyboard to make it easier to use the page itself, and I'm doing it as follows: $(document).on("keyup", function(e){ /*Tecla C*/ if(e.which === 67){ alert("A tecla C foi p...
asked by 12.05.2017 / 16:20