JSFiddle - React, Tailwind, and code Playground
by Rai Ammad
HTML
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<body>
<button>Get JSON data</button>
<div></div>
</body>
JavaScript
$(document).ready(function(){
$("button").click(function(){
$.getJSON("http://www.google.com/calendar/feeds/[email protected]/public/full?alt=json",function(result){
alert(result)
$.each(result, function(i, field){
$("div").append(field + " ");
});
});
});
});