Is there a method in Jquery to target properties of a css class?
example_class{
color: red;
font-size: 30px;
}
<span id="span1" class="example_class">Hello World!</span>
<span id="span2">Second Span</span>
My goal is to extract the color property from span1 and apply it to span2.