[Proto-Scripty] Re: Selecting Textboxes

2008-09-24 Thread Matt Foster
Instead of relying on the object's style, just give it a class that you can filter on, that enforces the style of a blue background. $$(".blue[name='pmt']")... On Sep 24, 9:41 am, kangax <[EMAIL PROTECTED]> wrote: > On Sep 24, 7:31 am, ColinFine <[EMAIL PROTECTED]> wrote: > > > > > On Sep 24,

[Proto-Scripty] Re: Selecting Textboxes

2008-09-24 Thread kangax
On Sep 24, 7:31 am, ColinFine <[EMAIL PROTECTED]> wrote: > On Sep 24, 1:06 am, Mardo <[EMAIL PROTECTED]> wrote: > > > Does anyone know how I could get all the textbox's with a > > name='PaymentAmount' and background color of blue? > > > I would like to enumerate these and get the total. > > > Any

[Proto-Scripty] Re: Selecting Textboxes

2008-09-24 Thread ColinFine
On Sep 24, 1:06 am, Mardo <[EMAIL PROTECTED]> wrote: > Does anyone know how I could get all the textbox's with a > name='PaymentAmount' and background color of blue? > > I would like to enumerate these and get the total. > > Any help would be much appreciated. $$('[name="PaymentAmount"]) will r