Is there any way to remove a tag from the page using jquery? and i need to remove particular style tag.
Thanks.
$(document).ready(function(){ $('style').detach(); // or $('style').remove(); });
reference .remove() and .detach()