
function blog_counter(blog_id, page, article_id) {
  if (article_id == undefined) {
    article_id = 0;
  }
  jQuery.ajax({
    type: "GET",
    url: "/api/counter/",
    data: {
      blog_id: blog_id,
      page: page,
      article_id: article_id
    },
    cache: false,
    dataType: "html"
  });
}
