How To Use The HTML SCRIPT Tags In Javascript
RegisterLogin
How To Use The HTML SCRIPT Tags In Javascript
Post Description: How To Use The HTML SCRIPT Tags In Javascript
Tags: How, To, Use, The, HTML, SCRIPT, Tags, In, Javascript
This Post Was Posted On Apr 19, 2008 By web hosting #1427
Post Description: How To Use The HTML SCRIPT Tags In Javascript
Tags: How, To, Use, The, HTML, SCRIPT, Tags, In, Javascript
This Post Was Posted On Apr 19, 2008 By web hosting #1427
How To Use The HTML SCRIPT Tags In Javascript by web hosting
FORMAT
<SCRIPT>
Javascript code here
</SCRIPT>
Javascript code here
</SCRIPT>
<SCRIPT> - When the browser sees this, it knows this is where the script BEGINS
</SCRIPT> - When the browser sees this, it knows this is where the script ENDS
so as you can see here, there is the opening <SCRIPT> tag, the javascript code and then the closing </SCRIPT> tag. when you use just the baisc opening and closing tags like this many browser will assument the the scripting language to follow will be javascript, but there are some brwoser that need to be told what kind of script it is.
besides telling where a scrpt beings and ends for the browser, SCRIPT tags can also tell the browser which scripting language will be used and define the address for an external javascript file. these aditional fucntions are achieve through the language and src or the source attributes in your code.
so its always a better to tell the browser what kind of script you will be using so from now on you should always use this format when you are toing to start a javascript code:
<SCRIPT language="javascript" type="text/javascript">
here is my example:
<SCRIPT language="javascript" type="text/javascript">
<!--
document.write ("Hello World. This Is A Webune Script Written In Javascript!");
//-->
</SCRIPT>
<!--
document.write ("Hello World. This Is A Webune Script Written In Javascript!");
//-->
</SCRIPT>
Leave Your Comments
Related Pages: [Add Your Website]
Post New Topic
©2011 Webune Forums - Mon Dec 19, 2011 1:31 pm
Powered by: Webune Forums V3
Powered by: Webune Forums V3