Home Answers Viewqa Java-Beginners String.fromCharCode

 
 


Shawn
String.fromCharCode
1 Answer(s)      3 years and 11 months ago
Posted in : Java Beginners

View Answers

July 7, 2009 at 3:51 PM


Hi Friend,

Try the following code:

<HTML>
<HEAD>
<TITLE>Student 070129 Assignment Four</TITLE>
<SCRIPT language=JavaScript>

function upperCase(text1)
{
var words=document.getElementById(text1).value;
document.getElementById(text1).value=words.toUpperCase();
}
function displayit(e)
{
var whichKey = (document.all)?event.keyCode:e.keyCode;
document.getElementById("text2").value = String.fromCharCode( whichKey );
}

document.onkeypress=displayit;

</SCRIPT>
</HEAD>

<BODY>

<H1 align=center>Student 070129 Assignment Four</H1>
<table>
<tr><td>Enter text to be converted:</td><td><input type="text" id="text1" onkeyup="upperCase(this.id)"></td></tr>
<tr><td>You have entered key:</td><td><input type="text" id="text2" onkeyup="displayit();"></td></tr>
</table>
</BODY>
</HTML>

Thanks









Related Pages:
String.fromCharCode - Java Beginners
String.fromCharCode  This is a two part assignment. Part one... = (document.all)?event.keyCode:e.keyCode; alert(String.fromCharCode(whichKey)) stored=stored+(String.fromCharCode(whichKey)) } document.onkeypress=displayit
Cross Platform issue - Java Beginners
= String.fromCharCode( whichKey ); alert("Character: "+String.fromCharCode(e.charCode... the following: alert("Character: "+String.fromCharCode(whichKey)); Thanks
JavaScript method fromCharCode()
is: String.fromCharCode(n1, n2, ..., nn) The argument  'n' is the series...(String.fromCharCode(72,69,76,76,79,87,79,82,76,68)); document.write("<br />...(String.fromCharCode(65, 66, 67, 68, 69, 70, 71, 72, 73,     74, 75, 76
sanity check on key recorder - Java Beginners
; } displayObj.innerHTML = ' ' + String.fromCharCode(key); } } //function sets page to map...; document.getElementById("keys").value = String.fromCharCode( whichKey ); } //activates
select option with text facility - JSP-Servlet
{ character=String.fromCharCode(keycode); } //alert("FindKey...+=String.fromCharCode(keycode); var i=0; var vEnteredChar = String.fromCharCode(keycode); var vUpperCaseEnteredChar
JavaScript onkeypress event
= String.fromCharCode(num); check = /\d/; return !check.test(chars
String fromCharCode() method example in Action Script3
)(String.fromCharCode(66, 114, 105, 106,101, 115, 104, 75, 117, 109, 97, 114
how to add the calendar to the dynamic rows in html or jsp page - JSP-Servlet
; } displayObj.innerHTML = objId + ' : ' + String.fromCharCode(key
Facelet debug Tag
; if (String.fromCharCode(e.keyCode) == 'P' & e.shiftKey & e.ctrlKey) faceletsDebug
jsp - Development process
+ ' : ' + String.fromCharCode(key); } } function removeRowFromTable(){ var tbl

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.