DEVFYI - Developer Resource - FYI

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

JavaScript Interview Questions and Answers


(Continued from previous question...)

43. How to access an external javascript file that is stored externally and not embedded?

This can be achieved by using the following tag between head tags or between body tags.
<script src="abc.js"></script>How to access an external javascript file that is stored externally and not embedded? where abc.js is the external javscript file to be accessed.

(Continued on next question...)

Other Interview Questions