// détection de la taille, cross browser
if (window.innerHeight) {
width = window.innerWidth;
} else if (document.documentElement && document.documentElement.clientHeight) {
width = document.documentElement.clientHeight;
} else if (document.body) {
width = document.body.clientWidth;
}