This is not working. Any ideas? <script src="/scripts/moreLinks.js" type="text/javascript"></script> is placed in html head or body to call function in moreLinks.js file with these tags only <script language="javascript"> function links() { window.alert("You did it!") } </script> Thanks,
This works: <script src="/scripts/moreLinks.js" type="text/javascript"></script> Placed in body: <script language="javascript" > links(); </script>