javascript - HTML text input - Prevent Windows 8 touch keyboard? -
is there way prevent on-screen keyboard popping default when html text input field gets focus on windows 8 touch screen pc?
the application in question barcode/rfid scanning web application.
it preferable if user still pop on-screen keyboard manually if need it.
preferably solution avoids changing global settings of machine.
more info: text input field needs able receive focus , accept keyboard input bar-code , rfid scanners attached terminal.
try
$("#textbox1").attr("readonly", "readonly"); or $("#state").attr("readonly", true);
thanks ab
Comments
Post a Comment