Cita:
Iniciado por emprear No es un problema del opener precisamente
para ie < 8 no funciona para cualquier atributo, si querés agregar un evento podés utilizar esto
Código HTML:
<!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 sa(){
var boton=document.getElementById('boton');
boton.setAttribute('title','Título Agregado');
if(navigator.userAgent.indexOf("MSIE 7.0") != -1){
boton.onclick = function(){eval(nombreFuncion(this)); };
}else{
boton.setAttribute('onclick','nombreFuncion(this)');
}
}
function nombreFuncion(elemento){
alert(elemento.id);
}
//]]>
</script>
</head>
<body>
<button onclick="sa()">Agrega atributos</button>
<button id="boton">boton con atributos agregados</button>
</body>
</html>
Fijate que el "title" si lo agrega
si preferís no usar eval vas a tener que utillizar attachEvent.
Aqui te dejo un ejemplo de uso (en ie > 8 se utiliza addEventListener)
[url]http://www.forosdelweb.com/f13/addeventlistener-volver-loca-1038982/#post4377485[/url]
Saludos
Gracias, eso fue falta de logica de mi parte por que e usado tanto attachEvent como addEventListener...
aunque acabo de hacer la prueba y me funciona pero solo si tengo la ventana hija abierta ya que el boton se inserta en la ventana padre dinamicamente... que estaré haciendo mal??