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