Code Snippet > JS - jQuery
Get The Latest Twitter Tweet with jQuery
Quick and easy way to retrieve the lastest twitter tweet from any user. It uses twitter user timeline api to display the latest tweet. Also, it checks for URL and reply tags and convert them into URL links.
JS - jQuery
You just have to create a div or p with id twitter like below:
<p id="tweet"></p>
and it should work perfectly. :)
For those who wants more advance feature, visit two of my tutorials in queness
$(document).ready(function() {
// set your twitter id
var user = 'quenesswebblog';
// using jquery built in get json method with twitter api, return only one result
$.getJSON('http://twitter.com/statuses/user_timeline.json?screen_name=' + user + '&count=1&callback=?', function(data) {
// result returned
var tweet = data[0].text;
// process links and reply
tweet = tweet.replace(/(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig, function(url) {
return ''+url+'';
}).replace(/B@([_a-z0-9]+)/ig, function(reply) {
return reply.charAt(0)+''+reply.substring(1)+'';
});
// output the result
$("#tweet").html(tweet);
});
});
This code snippet was submitted by:
Kevin Liew is a web designer and developer and keen on contributing to the web development industry. He loves frontend development and absolutely amazed by jQuery. Feel free to say hi to me, or follow @quenesswebblog on twitter.
AdvertisementEnsure your 100% success by using our incredible 70-652 dumps study packages. We are providing the best 199-01 and 1Y0-A18 training solutions for final exam preparations of 70-515. You can also get testking HP2-Z18 free if you download all the dumps.
Leave a comment
Have something to say? Drop a comment! No HTML tags are allowed in the comment textfield.





















8 comments