Display virtual keyword asp.net for password
Posted
by Nicole
on Stack Overflow
See other posts from Stack Overflow
or by Nicole
Published on 2010-05-19T18:56:41Z
Indexed on
2010/05/19
19:00 UTC
Read the original article
Hit count: 273
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.
© Stack Overflow or respective owner