i have to detect with JS (jQuery) wether a browser supports Woff and then add a class to the body. Something like this:

    if(woffIsSupported){

    $('body').addClass('modern');

    }

is this somehow possible? Thank you for your answers.

link|improve this question
1  
Why not just add the style and let the CSS fall back to some default font if the web font can't be used? – Pointy Sep 27 '11 at 13:48
feedback

1 Answer

There's a function on this post called isFontFaceSupported that checks for support based on browser features (the good way, i.e. not relying on the user agent string).

Copy that function and your code can become:

if(isFontFaceSupported()) {
  $('body').addClass('modern');
}
link|improve this answer
perfect. Thank you :) – user967165 Sep 28 '11 at 7:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.