
$(function(){
  $("#counter_area").text("Loading...");
  $.ajax({
    dataType: "jsonp",
    data: {
      "id": "ffd2257b586a72d1fa75f4ba2ad914e6",
      "mode": "jsonp"
    },
    cache: false,
    url: "http://access-analyze-counter.com/counter.php",
    success: function(data) {
      $("#counter_area").empty();
      $("#counter_area").html(data.html);
    }
  });
});
