Can the assigned font of an element be retrieved using jQuery?
For example, if there is this CSS:
#element
{
font-family: blahblah,Arial;
}
In the above case, the Arial font will be assigned to #element. Is it possible to extract that information using JS/jQuery?
Is something like this feasible:
$('#element').css('font-family');
which would return only blahblah,Arial;