Hi,
I want to use a virtual keyboard on my website.Virtual keyboard will display based on the checkbox checked.If u checked checkbox show vitual keyboard it will display, if u unckecked checkbox then it should be disable.i have tried using jquery plugin .Below
is my code sample
if (document.getElementById("chkUseVirtutalKeyboard").checked) {
$(this).keyboard({
usePreview: false
}).addTyping({
showTyping: true,
delay: 250
});
}
else
{
keyboard.destroy();
}
In this case keyborad is showing when i click on textbox but after unchecking checkbox it still shows that keyboard.Can anyone pls help me.Its very urgent.I have used destory () to destroy that evet but it still not working.
you can refer this link.
http://mottie.github.io/Keyboard/
Go to the complete details ...