Hi Klaus, I decided to use the jquery-database as you suggested.
Works well, I just have one issue. My fire bug does display console.log($('.users') .select('.name')); with the correct values. But hoe do I break the object up into an array. Or how do I access the objects individual elements? Thanks so much for your help! On Oct 31, 6:04 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: > 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?