Cita:
Iniciado por emprear PAra que funcione hay que hacerlo asi
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>titulo</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<script type="text/javascript">
//<![CDATA[
function crearBoton(){
var body_padre = window.opener.document.body;
var botonx=body_padre.document.createElement("BUTTON");
botonx.id = "boton";
botonx.title = "titulos del botón creado";
botonx.innerHTML = "boton con atributos agregados";
botonx.onclick = function(){
opener.nombreFuncion(this);
};
body_padre.appendChild(botonx);
}
//]]>
</script>
</head>
<body>
<button onclick="crearBoton()">Crear Botón</button><br />
</body>
</html>
faltaría solucionar el tema de que si la ventana se cierra la función nombreFuncion() ya no se ejecuta
voy a analizarlo un poco
Ah, un detalle importante, en Ie y Chrome no trabaja en local
Saludos
Gracias por tu respuesta lo probe y funciona.. ya estoy adaptando mi codigo..
intente con attachEvent, onclick, setAttribute y igual funciona solo si dejo la ventana hija abierta...