Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

form IE to Mozilla - need help for a script

Status
Not open for further replies.

gero123

Technical User
Joined
May 21, 2006
Messages
1
Location
CA
Hello ,

Can somebody help me to have the next script for Mozilla.

==================================

function bukvaKey() {
var bukva;
if (layout[0].checked || (window.event.keyCode < 32) || (window.event.keyCode > 127))
return false
else if (layout[1].checked)
bukva = " !\"#$%&'()*+,-./0123456789:;<=>?@?????????????????????????????^_???????????????????????????????";
window.event.keyCode = bukva.charCodeAt(window.event.keyCode - 32);
}
-->
</SCRIPT>
<NOSCRIPT>

</NOSCRIPT>
<INPUT TYPE=radio NAME="layout" > ???????? <INPUT TYPE=radio NAME="layout" CHECKED> ????????? ????????

<Br>
<TEXTAREA ID=text NAME=text onkeypress="bukvaKey()" COLS=80 ROWS=10></TEXTAREA>
<br>
<img src="ph.gif" width="420" height="112" alt="">
</BODY>
</HTML>


================================

Thank you
Georgi
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top