Thread
:
[SOLVED] accessing table data
View Single Post
#
5
(
permalink
)
Dec 2nd, 2007, 04:55
alexhkleung
Junior Member
Join Date: Nov 2007
Location: Hong Kong
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Re: accessing table data
solved!
replacing:
audiolink = document.getElementById('lecture1').rows[i].cells[1].childNodes[0].data;
with:
audiolink = document.getElementById('lecture1').rows[i].cells[0].innerHTML;
alexhkleung
View Public Profile
Find all posts by alexhkleung