benhowdle89 0 Junior Poster in Training

hi i'm using this, its working great, but if someone has a hyperlink in their status it doesnt pull it across - is there anything someone can think of?

Thanks

$(document).ready(function(){
	var username='xxxxxxxx'; // set user name
	var format='json'; // set format, you really don't have an option on this one
	var url='http://api.twitter.com/1/statuses/user_timeline/'+username+'.'+format+'?callback=?'; // make the url
				
		$.getJSON(url,function(tweet){ // get the tweets
		$("#twitter-posts").html(tweet[0].text); // get the first tweet in the response and place it inside the div
				    });
			});