Useful Codes
< back
- Character Map Generator [run the code]
<SCRIPT LANGUAGE="JavaScript">
var min = 1; //start from ...;
var max = 300; //end with ...;
var cols = 6; //number of columns in the table
var rows = ((max-min)-((max-min)%cols))/cols;
if ((max-min)%cols!=0){ rows++; }
var i = min;
for(var count=0; count<rows; count++) {
document.write("<tr>\n");
for (var c=0; c<cols; c++){
if (i<=max){
document.write('<td align=center>');
document.write('<table border=0><tr>');
document.write('<td><code>'+i+'</td><td>');
document.write('<code>=</td><td>'+i+';</td>');
document.write('</tr></table></td>');
}
i++;
}
}
</script>
It is adviced that you only play around with the bits in blue unless you know what the deuce you're doing. Keep that in mind.
|