Menu

HTML TUTORIALS - HTML Scripts

HTML Scripts

ADVERTISEMENTS


<head>
<script src="yourfile.js" type="text/javascript" />
</head>

ADVERTISEMENTS


<head>
<title>Internal Script</title>
</head>
<body>
<script type="text/javascript">
   document.write("Hello Javascript!")
</script>
</body>

ADVERTISEMENTS



Advertisements


<head>
<title>Event Handler Example t</title>
<script type="text/javascript">
function myAlert()
{
    alert("I am an event handler....");
	return;
}
</script>
</head>
<body>

<span onmouseover="myAlert();">
   Bring your mouse here to see an alert
</span>

</body>


Advertisements
Bring your mouse here to see an alert


JavaScript Example:
	<script type="text/javascript">
	<!--
	document.write("Hello Javascript!");
	//-->
	</script>

VBScript Example:
	<script type="text/vbscript">
	<!--
	document.write("Hello VBScript!")
	'-->
	</script>


JavaScript Example:
	<script type="text/javascript">
	<!--
	document.write("Hello Javascript!");
	//-->
	</script>
    <noscript>Your browser does not support Javascript!</noscript>
VBScript Example:
	<script type="text/vbscript">
	<!--
	document.write("Hello VBScript!")
	'-->
	</script>
    <noscript>Your browser does not support VBScript!</noscript>

Default Scripting Language


<meta http-equiv="Content-Script-Type" content="text/JavaScript" />