This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Convert this JS code into a bookmarklet using a tool like: http://js.do/blog/bookmarklets/ | |
// Be sure to add your own macro_url and spreadsheet_url | |
var macro_url = "THIS IS YOUR MACRO URL"; | |
var spreadsheet_id = "THIS IS YOUR SPREADSHEET URL"; | |
var iframe = document.createElement("iframe"); | |
iframe.setAttribute("name","dummyframe"); | |
iframe.setAttribute("id","dummyframe"); | |
iframe.setAttribute("style","display:none;"); |