@media (min-width: 768px) {
.
.
.
}
I would like to know if there is any way to manipulate the content of the media by means of javascript or jquery.
@media (min-width: 768px) {
.
.
.
}
I would like to know if there is any way to manipulate the content of the media by means of javascript or jquery.
Manipulate no, what you can use media queries in JavaScript through matchMedia
to do something additional to what you have on the style sheet.
if (matchMedia('(min-width: 768px)').matches) {
// hacer algo
}
Regarding the support, it has a pretty good one (see the link).