jquery を使用して別のページから 1 秒ごとに div のコンテンツを取得したい
<script type="text/javascript">
var auto_refresh = setInterval(
function ()
{
$('#load_tweets').load('home_add_img.php?v=1').fadeIn("slow");
}, 1000); // refresh every 10000 milliseconds
</script>
<div id="load_tweets" style="width:100px; height:200px;">
</div>