Script Categories













Miscellaneous >>> Character Table.

Ever have a hard time remembering the "&#xx;" codes to print out certain special characters? This neat little script will print out the code and it's symbol for you!

Add the below code to the <body> section of your page:

<center>
<script language="javascript" type="text/javascript">
/* Visit http://www.yaldex.com/ for full source code
and get more free JavaScript, CSS and DHTML scripts! */
<!-- Begin
document.write("<table border=1>")
for(var count=33; count<255; count++) {
document.write('<tr><td>' + count);
document.write(' = ' + '&' + '#');
document.write(count + ';</td></tr>');
}
document.write("</table>")
// End -->
</script>
</center>

JavaScript Editor Get Advanced
JavaScript and Ajax Editor,
Validator and Debugger!

1st JavaScript Editor.



Code was highlighted by 1st JavaScript Editor (The Best JavaScript Editor!).




©