Hey guys, have any of you ever tried to write a script inside Google Spreadsheet to make an ajax call to a website. I want to make the spreadsheet updated from the website. But after I put this short block of code, I got an error: "ReferenceError:" XMLHttpRequest "not defined". Any help guys? Do I need to call a specific library?
xmlhttp=new XMLHttpRequest(); xmlhttp.open("GET", eventObject[1], true); xmlhttp.send();
source share