I\'m trying to remove a div from the page (preferably prevent it from loading at all) but for now I\'m settling on removing it after the page loads.
When I try the f
Try with this
or
$(function() { $('#content').remove(); });