Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Media Queries for JS? Reply To: Media Queries for JS?

#169249
maxisix
Participant

$( document ).ready(function() {

if (window.matchMedia(“(min-width: 1000px)”).matches) {
console.log(“yaaa bro”);
}

});