$(function () {
  $.ajax({
    url: 'news/toplist.php',
    type: 'get',
    success: function (text) {
      $('#info').html(text);
    }
  });
});


