I am using this code to test for media query support as I want to load a polyfill for e.g. IE8.
yepnope({
test : Modernizr.mq('(only all)'),
nope : ['scripts/respond.js']
});
It works (= respond.js gets loaded in oder IE), but now I've just discovered that respond.js also gets loaded in Safari.
After having read the docs I believe that respond.js is loaded because there are some kind of media queries Safari doesn't support. Is this true? How can I solve this issue?