This is a javascript for a virtual keyboard. Click here for the source.
To use this keyboard all i have to do is use a CSS class in the TextBox control. Here is the TextBox.
<asp:TextBox ID="txtFTP" SkinID="Mini2" runat="server" TextMode="Password"
ForeColor="Gray" CssClass="keyboardInputCenter txtAllign" />
Jquery references are in the master page.
<script src="../App_Themes/Default/js/jquery-1.6.1.js" type="text/javascript"></script>
<script src="../App_Themes/Default/js/keyboard.js" type="text/javascript"></script>
My aspx page “XYZ.aspx” runs ok in firefox and the virtual keyboard pops up when the textbox is clicked but in chrome for the same form nothing happens.
I have used the same script to show a virtual keyboard and that works for both firefox and chrome but that page and master page is in another folder.
How can i fix/work around this?
Found the error. There was a “div” that wasn’t closed. Somehow firefox worked with that error but Chrome/IE didn’t. If you know why firefox worked please leave a comment. Thank you all for your cooperation.