Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124

Virtual Keyboard Widget es un plugin jQuery que implementa un teclado virtual en pantalla que se puede agregar a cualquier página web.
![]()
Una buea opcion para algunos caso de ingreso de contraseñas ya que gracias a este teclado virtual aunque el sistema tenga algun keylogger, este no podra registrar las pulsaciones de teclado.
Lo mejor de todo, es que Virtual Key Widget es facil de utilizar en cualquier web.
archivos JS de jQuery y el plugin:
<script type="text/javascript" src=" http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"> </script> <script type="text/javascript" src=" http://ajax.microsoft.com/ajax/jquery.ui/1.8.6/jquery-ui.min.js"> </script> <script src="jquery.keyboard.js" type="text/javascript"> </script>Agregar el siguiente script Javascript:
<script type="text/javascript"> $(function () { $('input[type=password]').keyboard({ layout: "qwerty" }); }); </script>Escribir HTML necesario para implementar el teclado:
<body> Click inside the TextBox<br /> <input id="txtPass" type="password" /> </body>
Sitio: snipplr.com/view/21577/virtual-keyboard-widget
Descargar plugin: plugins.jquery.com/project/virtual_keyboard
lo vi en : http://pixelcoblog.com/virtual-keyboard-widget-teclado-virtual-en-pantalla-con-jquery/