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