hey buddy i read this code of urs on one of the threads my concern is tht i need to to atore the data form each row in the table into an array..... or a srting.....
could u please help me with this???
<script type="text/javascript">
#
function showContent() {
#
#
var oTBL = document.getElementById('myTable')
#
for (var x = 0; x < oTBL.rows.length; x++) {
#
for (var y = 0; y < oTBL.rows[x].cells.length; y++) {
#
alert(oTBL.rows[x].cells[y].firstChild.data);
#
}
#
}
#
}