I have a style tag in my html document what looks like that:
<style>
#workspace a:not(.notClickable){color:#c75858 !important; text-decoration: underline; !important;}
#workspace a:not(.notClickable):hover {color:#c75a1b2 !important; text-decoration: none; !important;}
</style>
How can I read values:
color:#c75858
text-decoration: underline
color:#c75a1b2
text-decoration: none
into variables using jQuery?