Forum Discussion
KateRobertson
10 years agoCommunity Member
Exporting Variables into a Google Spreadsheet
Having read this post on how to export variables to be read in a google spreadsheet, I set about trying to get this working in my project, I soon ran into problems, I just could not get it to work a...
SteveFlowers-75
Community Member
It looks like Jquery might not be loading. Guessing that might be under the next line under ERR_FILE_NOT_FOUND
var head = document.getElementsByTagName('head')[0];
var script = document.createElement('script');
script.src = '//code.jquery.com/jquery-1.11.0.min.js';
script.type = 'text/javascript';
head.appendChild(script)
In this bit, it's likely that it can't find jquery because the reference is broken. Try using this one instead. Replace the //code... min.js bit above with the Google jquery reference below then test it again.
https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js
JoleneDonahue-9
4 months agoCommunity Member
Steve, I can't thank you enough. It worked! I've spent days on this. THANK YOU!