jQuery で スマホ / PC を判別する( is_mobile , detect mobile 的なやつ)

● jQuery で スマホ / PC を判別する

if (window.matchMedia("(max-width: 767px)").matches) {
    console.log( "モバイルです" );
} else {
    console.log( "PCです" );
}
No.1583
09/05 16:36

edit