im new to using jQuery. how can I update the border and background color using jQuery? i think my problem here is the jQuery selector, but how to create this jQuery selector?
$('.cls-box .cls-ctrl-input:bubble ~ .cls-ctrl-label::before')
.css('border-color','unset !important')
.css('background-color', 'unset !important'); - not working :(
.cls-box .cls-ctrl-input:bubble ~ .cls-ctrl-label::before {
border-color: #211dff;
background-color: #211dff;
}
TIA