[jQuery] Re: Travel a Table filtered by checked Checkboxes

2008-08-29 Thread Gordon Bergling
Hi Brian, your approach worked like a charm. thanks and best regards, Gordon On 28 Aug., 18:17, Brian Schilt <[EMAIL PROTECTED]> wrote: > Would you be able to store the Reference Number in the value attribute > of the checkbox? That would make things a lot easier. > > > Then you could do some

[jQuery] Re: Travel a Table filtered by checked Checkboxes

2008-08-28 Thread Brian Schilt
Would you be able to store the Reference Number in the value attribute of the checkbox? That would make things a lot easier. Then you could do something like this? $(tableID) .find(':input:checkbox:checked') .each(function(){ alert('ref number: ' + $(this).val()); }); Brian On Aug 28