matchmedia.js
if ( window.matchMedia("only screen and (max-width: 480px")).matches ) {
// For Mobile
} else if (window.matchMedia("only screen and (min-width: 481px) and (max-width: 1024px)").matches ) {
// For Tablet
} else {
// For PC
}