How to create new Zurb Foundation support for IE 7+?

I recently created a responsive website. I use the Zurb Foundation because some of the tips and articles are the best solution for more responsive to the site. But the problem is, the new version of Foundation does not support IE 7+, as you can see here , but I want my site support for the entire version of IE. Some offer advice on using the old foundation (i.e. Option 3). But I think the newest version is the best.

My question is, any solution to create new Foundation support (version 4) for IE? I need advice because I'm here. Thanks you

+5
source share
2 answers

IE7 IE8 , -.

, , , - .

response.js css3-mediaqueries. js. .

, .

, , :

<!--[if (lt IE 9) & (!IEMobile)]>
<script src="path-to/respond.js"></script>
<![endif]-->  

modernizr

Modernizr.load([
{
// The test: does the browser understand Media Queries?
test : Modernizr.mq('only all'),
// If not, load the respond.js file
nope : '/js/respond.js'
}
]);

, , , , .

!

+9

All Articles