Display virtual keyword asp.net for password
- by Nicole
Hi! I have a login page with an input of type "password" I would like to have a virtual keyboard to enter the password. I've searched and I found the jquery script for virtual keyboard. The code said to add this to my page
$('input[type=password]').keyboard({
layout: "qwerty",
customLayout:
[["q w e r t y {bksp}", "Q W E R T Y {bksp}"],
["s a m p l e {shift}", "S A M P L E {shift}"],
["{accept} {space} {cancel}", "{accept} {space} {cancel}"]]
});
but I cant make it work!!!! nothing happens when y set focus on my password control.
Any suggestions?? thank you!! Nicole.