Dynamic Resume

Reads CV data from a Google Docs Spreadsheet and displays them interactively

by Philippe Guglielmetti

HTML

<pre id='results'></pre>

JavaScript

localStorage.clear();
var sample_url = "https://docs.google.com/spreadsheet/pub?key=0Al_D4zS2T4QodGxBMzh2NUxyOFlScVFFbTlsZkZIYWc&output=html";
var url_parameter = document.location.search.split(/\?url=/)[1]
var url = url_parameter || sample_url;
var googleSpreadsheet = new GoogleSpreadsheet();
googleSpreadsheet.url(url);
googleSpreadsheet.load(function (result) {
    $('#results').html(JSON.stringify(result).replace(/,/g, ",\n"));
});


// https://docs.google.com/spreadsheet/ccc?key=0Al_D4zS2T4QodGxBMzh2NUxyOFlScVFFbTlsZkZIYWc&usp=sharing