yuzz181 / TOD First

// ==UserScript==
// @name       TOD First
// @namespace  http://forum.winpoin.com/index.php
// @version    0.1
// @description  Set TOD saat pertama kali dibuka.
// @match      http://forum.winpoin.com/index.php
// @copyright  2014, yuzz181
// ==/UserScript==

jQuery.noConflict();
jQuery(document).ready(function($) {
    $(".stats-tabs-content").hide();
    $("ul.stats-tabs li:first").removeClass("active").show();
    $("ul.stats-tabs li:last").addClass("active").show();
    $(".stats-tabs-content:last").show();
    
});