Team:Dundee/cleanPage.js

From 2011.igem.org

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

Revision as of 14:17, 27 May 2011

function removeElements() {

 $("#p-logo").empty();
 $("#search-controls").empty();
 $("#content").empty();

}

$(document).ready(function () {

 removeElements();

});