N
Nir
Hello,
I have a simply code in JavaScript which add a new column to TR
here it is .
var td=document.createElement('td');
var col = document.createElement('IMG');
col.setAttribute('width',0);
col.setAttribute('maxLength',0);
col.setAttribute('dir','ltr');
col.setAttribute('src','/FlyingCargo/Images/gar.gif');
td.appendChild(col);
tr.appendChild(td);
Sometimes this code does not work it seems like it does not work only
in the first row i append to table.
maybe it is a problem of timing ???
Anyone have any idea ?
Thank's
Nir Salab
(e-mail address removed)
I have a simply code in JavaScript which add a new column to TR
here it is .
var td=document.createElement('td');
var col = document.createElement('IMG');
col.setAttribute('width',0);
col.setAttribute('maxLength',0);
col.setAttribute('dir','ltr');
col.setAttribute('src','/FlyingCargo/Images/gar.gif');
td.appendChild(col);
tr.appendChild(td);
Sometimes this code does not work it seems like it does not work only
in the first row i append to table.
maybe it is a problem of timing ???
Anyone have any idea ?
Thank's
Nir Salab
(e-mail address removed)