Can you explain how to modify the property of the :before element?
For instance:
Using CSS:
.myclass:before {
content: '';
position: absolute;
left: 40px;
top: -10px;
}
With jQuery:
myElement.addClass('myclass');
I need to update:
from
left: 40px
to
left: 100px
Any suggestions on how I can achieve this?