Is there a way to extract the font color from a table element?
#FF0000
For example, it could be
#568000 etc..
Here's my table
<table class="mytable">
<th class=vertical bgcolor=#C0C0C0 align=center> <font color=#FF0000 size=2> Test this out</font>
</th>
<th class=vertical bgcolor=#C0C0C0 align=center> <font color=#568000 size=2> Test this out</font>
</th>
</table>
It seems like using the CSS property would work in most cases, like this
newInnerDiv.css("background-color");
But how can I access the font color inside a TABLE TH element specifically? It appears that sibling elements would work for navigating through the next TH elements.
Fiddle