That's kinda odd. i've tried the code i suggested above with no
problems. i guess there could be potential problems with it, but i
didn't see any specific problems with particular browsers described.
For now i'll stick to what i've got and wait for the "official" fix in
a later version.
-joe t.

On Nov 1, 6:28 am, "T.J. Crowder" <[EMAIL PROTECTED]> wrote:
> Hi,
>
> This is on the buglist; actually there's more to it, 
> apparently:http://prototype.lighthouseapp.com/projects/8886-prototype/tickets/309
> --
> T.J. Crowder
> tj / crowder software / com
>
> On Nov 1, 2:45 am, "joe t." <[EMAIL PROTECTED]> wrote:
>
> > i don't know if this is intentional, or if no one's noticed it, or
> > what, but in the last two releases, i've had to add a fix to
> > Form.reset():
>
> > -- 1.6.0.2/3:
> > var Form = {
> >   reset: function(form) {
> >     $(form).reset();
> >     return form;
> >   },
>
> > -- My fix:
> > var Form = {
> >   reset: function(form) {
> >     form = $(form)
> >     form.reset();
> >     return form;
> >   },
>
> > Since reset is a native method not returning anything, you obviously
> > can't chain it on the return line, but it didn't make much sense to me
> > why the form element isn't $()'d first.
> > i personally have several forms where i want to highlight the first
> > element after resetting the form, so i use
> > Form.reset('formid').focusFirstElement().
> > -joe
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Prototype: Core" group.
To post to this group, send email to prototype-core@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/prototype-core?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to