Please Reload






2 25 20 5/ 21 14 3 15 22 5 18 5 4/


Byte Uncovered !!





The numbers above....are code for

Byte Uncovered.

This type of code is every childs

first experience with secret messages.

Each letter of the alphabet

is given a number

AB
C
D
E
F
1
2
3
4
5
6





Byte Budget is the same idea...

But the letters are chunks of HTML.

And the numbers are the variables

We use the variables to write the HTML

just as you use the numbers to write the letters.





In the following script; var a

represents everything inside the quotes

<script> var a = "<center><table cellspacing=0 cellpadding=0><tr> <td bgcolor=white height=10 width=20></td><td bgcolor=teal height=10 width=20></td><td bgcolor=white height=10 width=20></td></tr></table></center>"; with(document){ write(a); } </script>






Just as in HTML if you put more than one table they will stack.

<script> var a = "<center><table cellspacing=0 cellpadding=0><tr> <td bgcolor=white height=10 width=20></td><td bgcolor=teal height=10 width=20></td><td bgcolor=white height=10 width=20></td></tr></table></center>"; with(document){ write(a+a+a+a); } </script>



As you can plainly see.

Writing a+a+a+a takes a lot less bytes

than writing the table four times....

Hence the name:


Byte Budget

Jungle Home