I have created two Javascript webresources with name new_/Scripts/My.JSON2.js and new_/Script/My.RestOperations.js which contains namespace called MYTEST. And in the same place I created one html page to load when sitemap item is clicked, with name new_/Webpages/My.sitemapPage.htm. And I'm trying to call some JSON functions from JScript in html page which are present in "new_/Scripts/My.RestOperations.js" file under MYTEST namespace.
In html page I added reference to JScript files as below:
<SCRIPT type=text/javscript src="../Scripts/My.RestOperations.js"></SCRIPT>
<SCRIPT type=text/javscript scr="../Scripts/My.JSON2.js"></SCRIPT>
<SCRIPT type=text/javscript>
function=pageOnLoad()
{
MYTEST.retrieveMultiple(dataSet,filter,callBackSuccess,callBackError);
}
</SCRIPT>
But still I'm getting an error as:
'MYTEST' is undefined.
type=text/javascriptor remove the attribute altogether. – Jon Adams Mar 1 at 22:14