Template:USTC-Software/script.js

window.USTC = {}; USTC.init = function() {

   USTC.load_css("//ustc.software/wiki/style.css");
   $("#content > h1").remove();
   $("#bodyContent > p").remove();
   $("#bodyContent div.printfooter").remove();
   $("#bodyContent div.visualClear").remove();

}; USTC.load_css = function(filename) {

   var node = document.createElement("link");
   node.rel = "stylesheet";
   node.href = filename;
   node.type = "text/css";
   document.head.appendChild(node);

}; $(USTC.init);