How to access an external JavaScript file that is stored externally and not embedded?

Q

How to access an external JavaScript file that is stored externally and not embedded?

✍: Guest

A

This can be achieved by using the following tag between head tags or between body tags.
<script src="/MyScripts.js""></script>
where MyScripts.js is the external JavaScript file to be accessed.

2010-10-26, 3409👍, 0💬