Magazine
 
Quick Review:Ajax
 

Ajax Examples

 

xmlDoc.loadXML(response);
bin = xmlDoc.getElementsByTagName(‘binary’);
var binary = document.getElementById(‘binary’);
binary.value = bin[0].firstChild.data;
oct = xmlDoc.getElementsByTagName(‘octal’);
var octal = document.getElementById(‘octal’);
octal.value = oct[0].firstChild.data;
dec = xmlDoc.getElementsByTagName(‘decimal’);
var decimal = document.getElementById(‘decimal’);
decimal.value = dec[0].firstChild.data;
hex = xmlDoc.getElementsByTagName(‘hexadecimal’);
var hexadecimal = document.getElementById(‘hexadecimal’);
hexadecimal.value = hex[0].firstChild.data;
}
function focusIn( ){
document.getElementById(“number”).focus;
}
</script>
</head>
<body onload=”focusIn( );”>
<h1>AJAX Conversion</h1> <br><br>
<table>
<tr>
<td>
Enter Number here: &nbsp; <input type=”text” id=”number” name=”number”
maxlength=”2" size=”2" onkeyup=”convert( );”>
</td>
</tr>
</table>
<table border=”1">
<tr>
<td align=”center” colspan=”5">
<b>Converted Values</b>
</td>
</tr>
<tr>
<td align=”center”>Binary</td>
<td align=”center”>Octal</td>
<td align=”center”>Decimal</td>
<td align=”center”>Hexadecimal</td>
</tr>
<tr>

Apr  2008 | Java Jazz Up |32
 
previous
index
next
 
Pages: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29,

30
, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53 , 54, 55, 56, 57,

58
, 59, 60, 61, 62, 63 , 64, 65 , 66 , 67 , 68 , 69 , 70, 71, 72, 73, 74, 75, 76, 77, 78,   Download PDF