paulirish/matchMedia.js

set background none on fakebody, ya?

Closed this issue · 4 comments

Just to bulletproof the body background image crash sitation...

fakeBody.style.background = "none";

Came to raise this issue, found it fixed - awesome!
However I now get a warning "invalid argument" for the added line in IE 7 and 8.
Changing it to
fakeBody.style.cssText = "background:none!important";
fixes.

Think IE is complaining about inclusion of "!important"

fakeBody.style.background = "none";

also works for IE7/8

i think it woulda worked in backgroundImage but not background shorthand.

IE is stupid, btw.