Hello ,
I have problem with changing content of a Dynamic table in FireFox ! ( mean its working fine in IE )
since i created the table dynamically i am using following function to change contents of the table .
*********************
function test1(text,row,col){
var x=document.getElementById('tableid').rows[row].cells;
x[col].innerHTML=text;
return;
}
***********************
its working fine in IE but its showing following error in firefox ( in debung section )
******************
Error: x[col] has no properties.
*******************
but if i change the input of rows to a static one its working fine ! but its updating just content of a row !
I have problem with changing content of a Dynamic table in FireFox ! ( mean its working fine in IE )
since i created the table dynamically i am using following function to change contents of the table .
*********************
function test1(text,row,col){
var x=document.getElementById('tableid').rows[row].cells;
x[col].innerHTML=text;
return;
}
***********************
its working fine in IE but its showing following error in firefox ( in debung section )
******************
Error: x[col] has no properties.
*******************
but if i change the input of rows to a static one its working fine ! but its updating just content of a row !