Comment on Number of likes of Mitt Romney on Facebook decreasing constantlyparentComments−dpritchett13yYep, this page handled entirely client-side, with some analytics JS on top for good measure: setInterval( function() { $.getJSON( "https://graph.facebook.com/mittromney", function(results) { console.log("Mitt Romney Like Count: " + results.likes)})}, 5000) Edit: Love the idea, glad the page is out there! Great conversation starter.−bashzorOP13yHaven't tried it, but isn't that blocked by Javascript's cross-domain protection?−woutervdb13yjQuery fixes that.
Comments
Yep, this page handled entirely client-side, with some analytics JS on top for good measure:
Edit: Love the idea, glad the page is out there! Great conversation starter.Haven't tried it, but isn't that blocked by Javascript's cross-domain protection?
jQuery fixes that.