How do I get the currently active NON computed CSS property active on an element. For example;
$("#someElement").css("font-size");
Should return something like "15vh" not 55px or similar as that is the computed style.
If using Chrome Web Tool, this would be the top most CSS property under the Elements / Styles tab.
Using jQuery or not is fine.