Team:Dundee/cleanPage.js

From 2011.igem.org

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

Revision as of 14:36, 27 May 2011

function removeElements() {

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

}

$(document).ready(function () {

 removeElements();

});