Skip to content

This JS class intends to provide a simple google spreadsheet reader.

Notifications You must be signed in to change notification settings

dabrain34/GSpreadSheetReader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

GSpreadSheetReader

This JS class intends to provide a simple google spreadsheet reader.

Example:

<script src="GSpreadSheetReader.js"></script>
<script type="text/javascript">
    function callBackSP (sp) {
        //Get the cell number from the given tab.
        var cell = sp.getCell(1,1);
        document.getElementById("data").textContent = cell; 
    }
    //Change the key id in the second parameter and the tab number "1".
    var sp = new GSpreadSheetReader("test1","1IjTQPoTivCpeGkUrvmBBdUUZGOXv_FfzRfKW_BUD8kA", "1", callBackSP);
    sp.loadScript();
</script>

About

This JS class intends to provide a simple google spreadsheet reader.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published