Ver Mensaje Individual
  #4 (permalink)  
Antiguo 26/04/2013, 07:45
Avatar de emprear
emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 17 años, 5 meses
Puntos: 1567
Respuesta: opener.document.createElement en jquery?

Cita:
Iniciado por oscard41 Ver Mensaje
no existe ese metodo en jquery?
append() sería un equivalente.
Pero antes tenés que identificar el selector en el opener (no en el parent, parent sería en el caso de un iframe)

Ejemplo
Código:
<!DOCTYPE html>
<html lang="es-ar">
<head>
<meta charset="utf-8" />
<title>Html5</title>
<script type="text/javascript" src="http://gdriv.es/emprear/css-js/jquery-1.9.0.min.js"></script>
<style type="text/css">
/*<![CDATA[*/
#test{
color: darkred;
}
/*]]>*/
</style>
</head>
<body>
<button onclick="window.open('nueva.html','nv','width=400,height=400');">abre ventana</button>
<div id="demo">Contenido modificable desde nueva ventana</div>
</body>
</html>
ventana hija (nueva.html)

Código:
<!DOCTYPE html>
<html lang="es-ar">
<head>
<meta charset="utf-8" />
<title>nueva ventana</title>
<script type="text/javascript" src="http://gdriv.es/emprear/css-js/jquery-1.9.0.min.js"></script>
<script type="text/javascript">
//<![CDATA[
$(document).ready(function(){
	
	$('#cambia_texto').click(function() {  
	var div_demo = window.opener.jQuery("#demo");
	var body_opener = window.opener.jQuery("body");
	div_demo.html("Contenido modificado");
	$(body_opener).append("<h1>Emprear</h1>");
	});	

});
//]]>
</script>
</head>
<body>
<button onclick="parent.document.body.style.background = 'lime';">fondo parent (afecta ventana actual</button><br />
<button onclick="opener.document.body.style.background = 'lime';">fondo opener (afecta ventana padre)</button><br />
<button id="cambia_texto">modificar contenido div demo opener y agregar elemento h1</button><br />
</body>
</html>
Aqui
Código:
	var div_demo = window.opener.jQuery("#demo");
	var body_opener = window.opener.jQuery("body");
es dónde identificamos los selectores que mencioné

SAludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.