Lecture Summary4b

Prepared by: Anthony Larrain


JavaScript

Example

The following code will produce this neon light effect.

This free script provided by
JavaScript Kit

<h2> <script language="JavaScript1.2"> /* Neon Lights Text By JavaScript Kit (http://javascriptkit.com) Over 400+ free scripts here! */ var message="Welcome to JavaScript Kit!" var neonbasecolor="black" var neontextcolor="yellow" var flashspeed=100 //in milliseconds ///No need to edit below this line///// var n=0 if (document.all||document.getElementById){ document.write('<font color="'+neonbasecolor+'">') for (m=0;m<message.length;m++) document.write('<span id="neonlight'+m+'">'+message.charAt(m)+'</span>') document.write('</font>') } else document.write(message) function crossref(number){ var crossobj=document.all? eval("document.all.neonlight"+number) : document.getElementById("neonlight"+number) return crossobj } function neon(){ //Change all letters to base color if (n==0){ for (m=0;m<message.length;m++) //eval("document.all.neonlight"+m).style.color=neonbasecolor crossref(m).style.color=neonbasecolor } //cycle through and change individual letters to neon color crossref(n).style.color=neontextcolor if (n<message.length-1) n++ else{ n=0 clearInterval(flashing) setTimeout("beginneon()",1500) return } } function beginneon(){ if (document.all||document.getElementById) flashing=setInterval("neon()",flashspeed) } beginneon() </script> <p align="center"><font face="arial" size="-2"> This free script provided by<br> <a href="http://javascriptkit.com">JavaScript Kit</a></font></p>

JavaScript Resources


FrontPage Layers


Character Entities

Special Characters


Meta Tags

Meta Tags


HTML Forms

The Code is:

<form action=" " method=post> <p><label>First Name: </label> <input type="text" name="firstname"></p> <p><label>Last Name: </label> <input type="text" name="lastname"></p> <p><label>Email:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </label> <input type="text" name="email"></p> <p><label>Comments:</label> <textarea name="thetext" rows="6" cols="40"></textarea></p> <p><input type="submit" value="send"> <input type="reset"></p> </form>

The value for the attribute action would be filled in by you.

More on forms W3.org

@Anthony Larrain 2005 - 2006

Send Questions or Comments to hci201@yahoo.com