I'm trying to load in a specific CSS stylesheet depending whether certain CSS3 features aren't supported in that browser.

The JS code I use is this:

// Modernizr feature tests
Modernizr.load({
    test: Modernizr.borderradius,
    nope: '/assets/css/border-radius.css'
});

In IE8 this gives, according to the developer tools:

<link href="undefined" rel="stylesheet" type="text/css" />

Any ideas?

link|improve this question
feedback

1 Answer

It seems to be a bug in Modernizr Minifier. I've encountered the same issue, but was able to fix that manually. Here are the details: https://github.com/Modernizr/Modernizr/issues/308

link|improve this answer
Could you post the fix? – Alxandr Jun 21 '11 at 8:09
Ah, sorry, found it. – Alxandr Jun 21 '11 at 8:13
feedback

Your Answer

 
or
required, but never shown

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