matchMedia polyfill for testing media queries in JS
// Likely want to requier both polyfills..
require('matchmedia-polyfill');
require('matchmedia-polyfill/matchMedia.addListener');
if (matchMedia('tv').matches) {
// tv media type supported
}
if (matchMedia('only screen and (max-width: 480px)').matches) {
// smartphone/iphone... maybe run some small-screen related dom scripting?
}
if (matchMedia('all and (orientation:landscape)').matches) {
// probably tablet in widescreen view
}
Paul Hayes tackled this using CSS transitions and their transitionEnd event
His code: https://github.com/fofr/matchMedia.js â though currently it doesnt support IE6-9, since they dont have transitions, obviously. đ