Week 2 - 123v2a.htm

 

<SCRIPT>

var gifName = "";
var Name =
prompt("What is your name", "Frank Peter");

alert("Welcome " + Name + "\nto my \nHome Page!");

document.write('<IMG SRC="images/welcome.gif"><P>');

Name = Name.toLowerCase();

for (i = 0; i < Name.length; i++) {
     var Char = Name.
charAt(i);

     if (Char == " ") Char = "space";
     if (Char == ".") Char = "period";

     // instead of writing out each character one at time chain the entire string together
     //
then write out the entire string with the document.write(gifName) below
     gifName += '<IMG SRC="images/' + Char + '.gif" WIDTH="40" HEIGHT="40">'
}

document.write(gifName);

</SCRIPT>