Is it possible if jQuery or something else change the width of @media query css while the page is working?
jQuery
@media query
css
So for example, if in style.css I have
@media screen and (min-width: 400px) { /*whatever*/ }
to change it to 500px after loading the website
500px
This is not possible using the traditional method. You must insert full css through jQuery. For example, for example:
$('body').append("<style type='text/css'>@media screen and (min-width: 500px) { /*whatever*/ }</style>");