Buenas,
no necesitas ni crear nuevas reglas ni recargar la página, simplemente:
Código Javascript
:
Ver originalfunction init()
{
ajustar();
window.onresize = ajustar;
}
window.onload = init;
function ajustar()
{
if (window.innerHeight)
{
document.getElementsByTagName('body')[0].style.height = window.innerHeight + 'px';
document.getElementsByTagName('body')[0].style.width = window.innerWidth + 'px';
}
else
{
// los casos para explorer (que hay varios)
}
alert('alto: ' + document.getElementsByTagName('body')[0].style.height);
alert('ancho: ' + document.getElementsByTagName('body')[0].style.width);