NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name lnes no more youtube
// @namespace
// @description lnes no more youtube
// @author alexw
// @include http://web.lnes.tp.edu.tw/xoops/*
// @version 1.0
// ==/UserScript==
$(document).ready(function(){
//先藏起來
$('.centerBlock').eq(0).hide();
$('.centerBlock').eq(1).hide();
//點公佈欄 show
$('.blockTitle').eq(2).click(function(){
$('.centerBlock').eq(0).show();
$('.centerBlock').eq(1).show();
});
//點精彩活動標題 hide
$('.blockTitle').eq(0).click(function(){
$('.centerBlock').eq(0).hide();
$('.centerBlock').eq(1).hide();
});
});