Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/06/2004, 03:01
soniagrande
 
Fecha de Ingreso: mayo-2004
Mensajes: 75
Antigüedad: 20 años
Puntos: 2
La funcion de Java script no es correcta del todo, te faltan los ; y no creas bien la cadena de texto que representa la tabla. Esta es la funcion corregida:

Código HTML:
function mate()
{ 
var w;
w= "<div style=position: absolute; top: 70; left: 525; width: 225; height: 91;>";
w= w + "<table border='1'><tr><td>";
w= w + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
w= w + "</td></tr></table>";
w= w+"</div>";
document.getElementById('pma').innerHTML=w;
}
Espero que asi te funcione.

Sonia