$(function() {
$.ajax({
    url:'/weibo/',
    type: 'GET',
    dataType: 'html',
	cache: false,
    error: function(html){
        alert('Error loading Weibo info!');
    },
    success: function(html){
	$("#weibo").html(html);
    }
}); 

});
