
// ユーザ別タグ一覧表示
function showUserTag(user, type, ref)
{
  $j.ajax({
    "type":   "get",
    "url":    "/api/tag/user/"+ user,
    "data":   {"ref":ref, "t":type},
    "dataType": "html",
    "success":  function(res) {
      $j('#user_tag_list').html(res);
    }
  });
}
