dahngeek
11/28/2013 - 2:34 PM

========== JAVASCRIPT MEDIA QUERYS ============== 1 Archivo = Detectar cambio de tamanio, media query javascript: 2 Archivo = detecgar el

========== JAVASCRIPT MEDIA QUERYS ============== 1 Archivo = Detectar cambio de tamanio, media query javascript: 2 Archivo = detecgar el tamano al inicio (Media Query solo al inicio)

var mq = window.matchMedia( "(min-width: 500px)" );
if (mq.matches) {
	// window width is at least 500px
}
else {
	// window width is less than 500px
}
// media query event handler
if (matchMedia) {
	var mq = window.matchMedia("(min-width: 500px)");
	mq.addListener(WidthChange);
	WidthChange(mq);
}

// media query change
function WidthChange(mq) {

	if (mq.matches) {
		// window width is at least 500px
	}
	else {
		// window width is less than 500px
	}

}