I'm in doubt is it better to make a responsive website using media queries or jQuery?
I'm in doubt is it better to make a responsive website using media queries or jQuery?
Simple, with CSS and following some rules, jQuery is just a javascript library so it will not set the page style, what I recommend is to use measures with% instead of pixels as it will fit the screen and not a fixed measure, use the meta tag viewport for the best visualization of your site in some devices, and the media-query you can specify styles, for example @media screen specific CSS for monitors, @media print for printers, @media ( max-width: 480px) for smaller screens such as a cell phone.