Tuesday, December 22, 2009

How to add supported JavaScript to pages.

Example how to add to pages JS supported by Microsoft:

1.
Create Folder under ISV



2.
add JavaScript code to page:



3.
add the next code into contact page:
var request = new ActiveXObject("Msxml2.XMLHTTP");
request.open("GET", "/isv/MyScripts/contact.js", false);
request.send(null);
eval(request.responseText);

For instance:



4.
open contact page and get the message.




Enjoy,
Rami Heleg