<script>
var t = setTimeout( function() {
$.ajax({
type: 'POST',
url: '/news.php',
data: {
aj: '<?=$user['url']?>'
},
cache: true,
async: true,
success: function(html){
$(".news").append(html);
}
});
}, 1000 );
</script>