var zoom = document.documentElement.clientWidth / window.innerWidth;
jQuery(window).resize(function() {
var zoomNew = document.documentElement.clientWidth / window.innerWidth;
if (zoom != zoomNew) {
alert('key is down');
jQuery(".left_body").width((window.innerWidth-984)/2-6+"px");
jQuery(".right_body").width((window.innerWidth-984)/2-6+"px");
}
});
IEで動作しない