How to Search Spreadsheet Using Google Visualization Query
I've got this simple webpage which uses google.visualization.Query to pull the values of three specific cells from this spreadsheet , and then sets the values of three corresponding input fields based on their unique id attributes. google.load('visualization', '1', {'packages':['corechart']}); google.setOnLoadCallback(work); function work() { var queryWORK = new google.visualization.Query('https://docs.google.com/spreadsheet/ccc?key=1HpHMfoEnPgESb2XPVCgb7XyGwRAvrq3EoQj4WHj4vhA&sheet=QUERY'); queryWORK.send(handleQueryResponse); } function handleQueryResponse(response) { if (response.isError())