How To Get The Last Tweet Using jQuery
Lots of websites have started using plugins that display the latest tweets from Twitter. Well, here’s a simple jQuery script shared by ayalcinkaya from Mkyong that uses jQuery which basically has the same concept except that it retrieves only the user’s one latest tweet. jQuery AJAX $(‘#last-tweet’).click(function(){ $(“#tweet_result”).text(“Loading……”); var username = $(‘#username’).val(); $.ajax({ type: “GET”, [...]