How To Display Latest Tweet On Website
Here’s a really quick and simple way to display your latest Tweet on your website like the example below (the graphics obviously won’t appear, just the Tweet): 1 2 3 4 5 6 7 8 9 10 11 <script src="http://code.jquery.com/jquery-latest.js"></script> <script> $(document).ready(function () { $.getJSON("http://twitter.com/statuses/user_timeline/USERNAME.json?callback=?", function(data) { $(".show_tweet").html(data[0].text); }); }); </script> <div class="show_tweet"></div> Simply [...]
brightcherry.co.uk