I need to sniff the formatting for a <p>
so I can pass the info to an <iframe>
and match formats.
I can get the font face using jQuery
var font = $("p").css('font-family');
var fsiz = $("p").css('font-size');
However if the font-family is a web font - eg "Open Sans" I also need to find the src for the @font-face
rule that loaded it.
I have no idea how to do that.