I need to remove all the style definitions in a page using javascript, to obtain the same result as doing View > Page Style > No Style in Firefox. Which i
View > Page Style > No Style
If you have jQuery, you can probably do something like
$('link[rel="stylesheet"], style').remove(); $('*').removeAttr('style');