JSFiddle - React, Tailwind, and code Playground
by refhat
HTML
<html> <head> <script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.3.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $.getJSON("http://api.twitter.com/1/statuses/public_timeline.json",function(result){ $.each(result, function(i, field){ $("div").append(field + " "); }); }); }); }); </script> </head> <body> <button>Get JSON data</button> <div></div> </body> </html>