Create a new page Create a classroom Create a syllabus Create a group project Use another template
Share this It's easy - just select the desired access level, copy this link and send it via email, instant message, etc.Link: Just a link to your wiki. Post this anywhere and people can ask you for the invite key.
Recently edited pagesFrontPage9 mos agolibrary9 mos agoCode resources10 mos agobackground-color10 mos agotext-align10 mos agolist-style-position10 mos agolist-style-image10 mos agopadding-bottom10 mos agoDesign resources10 mos agobackground-repeat10 mos ago
Recent visitorsYounowSomeone else39 mins agoSomeone else1 hr agoSomeone else2 hrs agoSomeone else3 hrs agoSomeone else4 hrs agoSomeone else6 hrs agoSomeone else11 hrs agoSomeone else11 hrs agoSomeone else11 hrs ago
This is your Sidebar
Edit this! Put links and content here.
Educators: Earn a free Gold upgrade by joining the PBwiki Back To School Challenge.
script
Description Defines a script (programing language), such as JavaScript
Note:Code within this element is executed immediately when the page is loaded, if it is not in a function. Script that appears after a
Attributes
Example 1
Source: http://www.w3schools.com/tags/tag_script.asp
Example 2 In this example, we declare the default scripting language to be "text/tcl". We include one SCRIPT in the header, whose script is located in an external file and is in the scripting language "text/vbscript". We also include one SCRIPT in the body, which contains its own script written in "text/javascript".
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <HTML> <HEAD> <TITLE>A document with SCRIPT</TITLE> <META http-equiv="Content-Script-Type" content="text/tcl"> <SCRIPT type="text/vbscript" src="http://someplace.com/progs/vbcalc"> </SCRIPT> </HEAD> <BODY> <SCRIPT type="text/javascript"> ...some JavaScript... </SCRIPT> </BODY> </HTML>
Source: http://www.w3.org/TR/html401/interact/scripts.html