Forum Discussion
tristaanogre
14 years agoEsteemed Contributor
Scripts can only be called from the page if the page itself contains tags as indicated in that help topic, like so:
or
If the page does not contain "Script" tags like this, there will be no "Script" object on the document.
<SCRIPT LANGUAGE="JavaScript">
function MyFunc(AString, AnInteger)
{
. . .
}
</SCRIPT>
or
<SCRIPT LANGUAGE="JavaScript" src="../ScriptFolder/MyScriptFile.js">
</SCRIPT>
If the page does not contain "Script" tags like this, there will be no "Script" object on the document.