Script definition  - <SCRIPT>   -  </SCRIPT>

Previous- SAMP - Sample  |  Next-SELECT - Selection list

Description
Places a script within the document and can be specified within the <HEAD> or <BODY> of the document. The code within the script tag can be surrounded by a comment tag so that early browsers ignore the code rather than displaying it on the web page.
Attributes
NameValuesDescription
archiveurl
charsetstringSpecifies the character encoding, which will allow the browser to more fully understand the link.
classclassnameClass of the element which is used to associate the element with a style sheet.
defer
eventevent_name
forelement_name
idstringA unique name to identify an element.
languagejavascript|jscript|vbscript|vbs
srcurlSource filename
stylestringSpecifies style information for the element.
titlestringTitle for element which is often displayed as a tool-tip when the cursor hovers over the element.
typestringParameter type

Example
<script language="javascript">
<!--
alert("javascript popup demonstration");
//-->
</script>
This example can not be displayed.
Compatability
HTMLNETSCAPEINTERNET EXPLORER
4.1N2N3N4N6IE3IE4IE5IE6
YES YES YES YES YES YES YES YES YES

Previous- SAMP - Sample  |  Next-SELECT - Selection list