View Single Post
Old 03-16-2013, 05:07 AM   PM User | #3
DMN
New Coder

 
Join Date: Dec 2012
Posts: 18
Thanks: 1
Thanked 0 Times in 0 Posts
DMN is an unknown quantity at this point
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>

Last edited by DMN; 03-16-2013 at 05:24 AM..
DMN is offline   Reply With Quote