I'm having an issue with calling a function from a external linked JS file. The file is linked like so in the header of the page:
And the function that exists in the file.js is called from the body of the html page like so but its not working???
Code:
<script type="text/javascript" src="file.js"></script>
Code:
<script>myfunction('test');</script>
Comment