<script type="text/javascript" src="">
The src attribute of the SCRIPT element is used to import an external JavaScript file into the document.
<script type="text/javascript" src="script.js"></script>
Attribute |
Value |
Explanation |
type=" " |
text/javascript |
MIME type |
src=" " |
URL |
the URL of the external JavaScript file |
Example