i have the following style sheet in my header tag that gets added in by a npm plugin i have to show and hide columns from showhidecolumns
everything works fine except the bellow style sheet gets added to the header tag of my page which is fine but when i navigate away from that page and return to the page again it still remembers the styles that was applied to it.
<style type="text/css">#elements-table-1 td:nth-child(1),#elements-table-1 th:nth-child(1),#elements-table-1 td:nth-child(2),#elements-table-1 th:nth-child(2){display:none}</style>
is there a way that i can remove the #elements-table-1 tag from the style sheet so that the style sheet is empty?