I am new to javascript. What I am trying to do is to make a password validation system and get user focus on the input.
my main question is can you use more than one function for onkeyup?
example:
<input onkeyup="validatepassword(),onfocus()">
The validatepassword function is to check user input e.g. password length.
The onfocus function is to get user focus on the input.