I have CSS as shown below, Let say if I want to change the border color using jquery for li before it doesn't work for me. Can someone help with this issue. How can I change the color for that css style using Jquery.
.multi-steps > li:before {
border-color: #ffb22b;
}
$('.multi-steps > li:before').css({
'border-color': '#007bff'
})