Percentage Electricity from the Wind
How much of PEI's energy load is being met by wind energy right now?
HTML
<h1>Percentage Electricity from the Wind</h1>
<p id="percentage">Getting the data...</p>
JavaScript
$.getJSON("http://e.ruk.ca/pei-json", function(data) {
$('#percentage').html(data['percentage-wind'] + '%');
});