Hi, thanks for replying. I know about linking to an external JS file as you have mentioned above, but what I would like to know is after placing a link to the external JS file in the script element, can I then call Function1, Function2, or Function3 in the body of my page like the following:
Code:
<body>
<div>
<a href="javascript:Function1()">Click Here </a><br>
<a href="javascript:Function2()">Click Here </a><br>
<a href="javascript:Function3()">Click Here </a>
</div>
</body>