Is there any way to remove a tag from the page using jquery? and i need to remove particular style tag.
Thanks.
To remove a particular style tag, you'd need to assign it an id, like this:
After that use jQuery's remove function to get rid of it, like this:
$('style#someid').remove();
I hope this helps.