I want to add class from jquery to a selected element ::before CSS element. How would I do that? any help?
Here's a screenshot.
I want to add CSS for the above element from jquery.
I want to add class from jquery to a selected element ::before CSS element. How would I do that? any help?
Here's a screenshot.
I want to add CSS for the above element from jquery.
same question here: Access the css ":after" selector with jQuery
you have to add a class directly to the element and then style it´s :before
example html:
<div>
text
</div>
CSS:
.before-styling::before{
content:'before';
}
JS:
$("div").addClass('before-styling');