Team:Dundee/cleanPage.js

From 2011.igem.org

(Difference between revisions)
Line 3: Line 3:
   $("#search-controls").hide();
   $("#search-controls").hide();
   $(".firstHeading").hide();
   $(".firstHeading").hide();
 +
  $("#contentSub").hide();
   $("#footer-box").hide();
   $("#footer-box").hide();
}
}

Revision as of 14:42, 27 May 2011

function removeElements() {

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

}

$(document).ready(function () {

 removeElements();

});