How To Attached External Javascript Scripts
- Forums
- Javascipt
- How To Attached External Javascript Scripts
This Page Contains information about How To Attached External Javascript Scripts By web hosting in category Javascipt with 3 Replies. [2159], Last Updated: Mon Jun 24, 2024
web hosting
Sat Apr 19, 2008
3 Comments
472 Visits
calling external scripts
script tags are also useful if you wish to call an external javascript file in your html web page documents
an external javascript file is a text file that contains nothing but javscrp code and it is save with the .js extension. by calling an external file, you can save the time of coding long lines of script into each page in which the script is needed. instead, you can use a single line that points to the javascript file with all of the code.
<SCRIPT Language="Javascript" src="javascriptfile.js"></SCRIPT>
with this example, you can attach a file call javascriptfile.js into your HTML document