Currently I have a lot of @font_face tags in my CSS
@font-face{
font-family: Garamond;
src: url('ePrintFonts/pcl_91545.ttf');
}
@font-face{
font-family: CG Times;
src: url('ePrintFonts/pcl_92500_CG.ttf');
}
@font-face{
font-family: CG Omega;
src: url('ePrintFonts/pcl_92506.ttf');
}
I'm applying these font face tags using their font-family name to other elements. How can I access the src portion of the particular font with JavaScript if I'm given a particular element that has the font face applied to it?