what is the best way to replace all the values with a given attribute in HTML DOM and CSS.
Below is the example of replacing all block
values with none
, Should replace all the occurrence of the given input.
ex:
<a href="#" onclick="document.getElementById('infoDiv0').style.display='block';">
p.ex1 {display: block;}
TO
<a href="#" onclick="document.getElementById('infoDiv0').style.display='none';">
p.ex1 {display: none;}
is there any chrome extension for it?