Team:Dundee/cleanPage.js

From 2011.igem.org

(Difference between revisions)
Line 1: Line 1:
function removeElements() {
function removeElements() {
-
  $("#top-section").hide();
 
   $("#search-controls").hide();
   $("#search-controls").hide();
   $(".firstHeading").hide();
   $(".firstHeading").hide();

Revision as of 15:07, 27 May 2011

function removeElements() {

 $("#search-controls").hide();
 $(".firstHeading").hide();
 $("#contentSub").hide();
 $("#catlinks").hide();
 $("#footer-box").hide();

}

$(document).ready(function () {

 removeElements();

});