Percentage Electricity from the Wind

How much of PEI's energy load is being met by wind energy right now?

by Peter Rukavina

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'] + '%');
});