I have two password inputs, each are entered by the password keypad, but no keyboard input. The keypad is a 3 by 3 table with buttons 1 to 9.
How can I trigger the event when the client mouse cursor leaves the keypad table?
What I want to do is if the user clicks something and then leaves the keypad, validate and confirm password input.
I tried to add onmouseout and div wrapper to the table, but it was not what I expected because when the cursor hovers over the button, the event fires.
<table onmouseout="ValidatorEnable()">
Thanks.