﻿
$(document).ready(function(){
$("#src .post").each(function(){
var date =$(this).find(".entry-date").text();
var ttl =$(this).find("h2").html();
$("#topnew_list").append('<dt>'+date+'</dt><dd>'+ttl+'</dd>');
});
});





