I was wanting a way to get all the key value pairs of a CSS class by using Javascript.
An example would be i had a class
.example {
color: black;
display: block;
}
and then I could use a Javascript method to obtain the ".example" class key value pairs
{ color: black; display: block; }
Is this possible?