Is there a JavaScript command to remove all CSS pseudo-elements whatsoever in a document? [closed]
Closed as unclear by Alexei on May 1, 2022 at 17:05
This question cannot be answered in its current form, because critical information is missing.
This question was closed; new answers can no longer be added. Users with the reopen privilege may vote to reopen this question if it has been improved or closed incorrectly.
In a dense DOM tree created by a content management system which I didn't create and don't know much about there might be pseudo elements hiding in various places.
To ensure that, I want to run some recursive "brute force" JavaScript command that removes any CSS pseudo element whatsoever from a document.
Pseudocode
document.querySelectorAll('*').forEach((element)=>{
DELETE A CSS PSEUDO ELEMENT;
});
My question
Is there a JavaScript command to remove all CSS pseudo-elements whatsoever in a document?
1 comment thread