Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Media queries compatibility

There are versions of browsers that don't support media queries and after i research i did i found two javarcript based solutions the css3-mediaquries.js solution and the respond.js solution.which one is the best?Is there any other solution thta i am not aware fro this problem?

1 Answer

James Barnett
James Barnett
39,199 Points

You forgot about the mobile first (e.g. the do nothing) approach & using conditional style sheets for IE 6-8

source: Techniques for Gracefully Degrading Media Queries by Smashing Magazine

thanks a lot !