I have this selector in my CSS file. I want to remove it from CSS file with JS. I have the exact DOM element which is Equal to the CSS selector .debtor-content label[for=amount]
.
I am making an app with JS.
//CSS
.debtor-content label[for=amount]::after
{
content: 'Insufficient Money';
font-size: 10px;
font-weight: bold;
color: red;
margin-left: 6px;
background-color: yellow;
padding: 1px 2px;
position: absolute;
top: 46px;
right: 58px;
}