Team:TUDelft/javascript/removal

// Trying to minimize the impact that the fucking iGEM upload system has on the layout of the uploaded pages... Minimizing the impact of the already loaded stylesheet...

$(document).ready(function() {

 $('div#content').removeAttr('id').attr('id', 'contentBox');
 $('a#top').remove();
 $('div#top_title').remove();
 $('div#HQ_page').removeAttr('id');
 $('div.mw-body').removeAttr('class');
 $('div#mw-content-text').removeAttr('id');
 $('div#bodyContent').removeAttr('id');
 $('div.mw-content-ltr>p').addClass('meta');
 $('div.mw-content-ltr').removeAttr('class').attr('id', 'Global');

})