ventana emergente 100%

by fredd man

HTML

<html>
<head>
<style type="text/css">
#contenedor {
    width: auto;
    height: 50px;
    background: black;
}
</style>
</head>
<body>
    <div id="contenedor"></div>
    <a href="popup.html" onclick="window.open(this.href, '_popup', 'width=100%,resizable=no,scrollbars=no'); return false;">Abrir ventana emergente</a>
</body></html>



<html>
<head>
<script type="text/javascript">
    function aplicar_color()
    {
        opener.document.getElementById('contenedor').style.background = 'red';
    }
</script>
</head>
<body>
    <a href="#" onclick="aplicar_color(); return false;">Cambiar color de contenedor</a>
</body></html>

JavaScript

opener.jQuery('#contenedor').css('background', 'red');