estoy ratando de generar dos cuadros y que segun haga click en cada uno de ellos me diga su propiedad nombre...
no se que puede haber mal aqui
Código:
<script> var Panel=function(nom,x,y){ this.nombre=nom; this.panel = document.createElement('div'); // 2 this.panel.id = this.nombre; this.panel.className='pan'; this.panel.style.left=x+"px"; this.panel.style.top=y+"px"; document.getElementById('contenedor').appendChild(this.panel); this.me=document.getElementById(this.nombre); this.me.onclick=function(){ alert("clickado "+this.nombre); } } function inicializa(){ var pans=new Array(); pans[0] = new Panel("pan0",0,0); pans[1] = new Panel("pan1",210,0); } </script> <style> .pan{width:200px; height:200px; background-color:#09F; position:absolute; top:0; left:0;} </style>