Here's an awesome jQuery plugin to handle HTML tables like relational databases: http://github.com/nkallen/jquery-database/tree/master
--Klaus On 31 Okt., 06:29, GrootBaas <[EMAIL PROTECTED]> wrote: > Hi all, > > Any help would really be much appreciated. > > I have a table, how can I read the cell values of the table ... > > Currently I have ... > > function test () { > > var address; > var i; > > for (i=1; > i<document.getElementById('veh_odometer').rows.length; i++) > { > > address = > document.getElementById('veh_odometer').rows[i].cells[2].data; > alert('VALUE: '+address) > } > > } > > I do loop through the table, but my variable address is undefined. > Any ideas?