Changing css of :after pseudoclass
Hi,
In my stylesheet have a css rule for an element with the :after pseudoclass. Is it possible to change the this CSS with jQuery?
For example, in my CSS I have
- .price:after {
- content:" EUR";
- font-weight:bold;
- }
When I try the following in my JavaScript file
- $('.price:after').css({"font-weight":"normal", color:"blue"})
nothing changes.