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 is the simplest way?
Asked
Active
Viewed 2.5k times
14
5 Answers
19
You can recursively iterate through all elements and remove the style
attribute:
function removeStyles(el) {
el.removeAttribute('style');
if(el.childNodes.length > 0) {
for(let child in el.childNodes) {
/* filter element nodes only */
if(el.childNodes[child].nodeType == 1)
removeStyles(el.childNodes[child]);
}
}
}
Or:
function removeStyles(el) {
el.removeAttribute('style')
el.childeNodes.forEach(x => {
if(x.nodeType == 1) removeStyles(x)
})
}
Usage:
removeStyles(document.body);
To remove linked stylesheets you can, in addition, use the following snippet:
const stylesheets = [...document.getElementsByTagName('link')];
for(let i in stylesheets) {
const sheet = stylesheets[i];
const type = sheet.getAttribute('type');
if(!!type && type.toLowerCase() == 'text/css')
sheet.parentNode.removeChild(sheet);
}
Or:
const sheets = [...document.getElementsByTagName('link')];
sheets.forEach(x => {
const type = x.getAttribute('type');
!!type && type.toLowerCase() === 'text/css'
&& x.parentNode.removeChild(x);
});

Alex
- 34,899
- 5
- 77
- 90
-
1This will remove styles applied directly to elements, but won't affect CSS. – Kevin Ennis Feb 12 '12 at 22:30
-
Your code seems promising. Anyhow, I have to run the second snippet twice to take effect. Why? P.S.: .toLowerCase() – tic Feb 12 '12 at 22:59
-
@tic yeah, `.toLowerCase()` is correct - oversight taken from C# :P – Alex Feb 12 '12 at 23:06
11
If you have jQuery, you can probably do something like
$('link[rel="stylesheet"], style').remove();
$('*').removeAttr('style');

Joe
- 15,669
- 4
- 48
- 83
9
Here is the ES6 goodness you can do with just one line.
1) To remove all inline styles (eg: style="widh:100px"
)
document.querySelectorAll('[style]')
.forEach(el => el.removeAttribute('style'));
2) To remove link external stylesheet (eg: <link rel="stylesheet"
)
document.querySelectorAll('link[rel="stylesheet"]')
.forEach(el => el.parentNode.removeChild(el));
3) To remove all inline style tags (eg: <style></style>
)
document.querySelectorAll('style')
.forEach(el => el.parentNode.removeChild(el));

Community
- 1
- 1

Rajkeshwar Prasad
- 869
- 8
- 11
0
Only js, 1 row so you can easily use the console, therefore IMO are better answers it's another option:
["style", "link"].forEach((t) => Array.from(document.getElementsByTagName(t)).forEach((i) => i.parentElement.removeChild(i)))
Just for better reading:
["style", "link"].forEach((t) =>
Array.from(
document.getElementsByTagName(t)
).forEach((i) =>
i.parentElement.removeChild(i)
)
)

Erick de Vathaire
- 166
- 2
- 5