window.open (width и height)
Как изменить скрипт так, чтоб размеры width и height были в процентах или высчитывались под размер экрана.
<script>
function newMyWindow(e) {
var h = 800,
w = 1200;
window.open(e, '', 'scrollbars=1,height='+Math.min(h, screen.availHeight)+',width='+Math.min(w, screen.availWidth)+',left='+Math.max(0, (screen.availWidth - w)/2)+',top='+Math.max(0, (screen.availHeight - h)/2));
}
</script>
|