Preview:

////////////////////////
var mediaQuery = matchMedia('(max-width: 768px)');

// ページが読み込まれた時に実行
handle(mediaQuery);

// ウィンドウサイズが変更されても実行されるように
mediaQuery.addListener(handle);

function handle(mq) {
	if (mq.matches) {
		// ウィンドウサイズが768px以下のとき
	} else {
		// それ以外
	}
}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter