name your elements with whatever name you want. <form name="gustavo" id="xyz" class="blah">
can be selected via: $('#xyz') $('.blah') (this will return an array of -all- elements of class "blah") $('form') (this will return an array of -all- form elements on the pag) $('form[name=gustavo]') $('form[id=xyz]') $('form[class=blah]') $('form#xyz') Is there a specific question here? On Mon, Nov 9, 2009 at 2:33 PM, Lord Gustavo Miguel Angel < goosfanc...@gmail.com> wrote: > then... > what alternative have? > thank“s > > *From:* Charlie Griefer <charlie.grie...@gmail.com> > *Sent:* Monday, November 09, 2009 7:18 PM > *To:* jquery-en@googlegroups.com > *Subject:* Re: [jQuery] jquery form and "myfom" > > On Mon, Nov 9, 2009 at 2:16 PM, Lord Gustavo Miguel Angel < > goosfanc...@gmail.com> wrote: > >> hi, >> jquery form only work if name of form is "myform"? is correct afirmation? >> > > there are no such restrictions/limitations. > > Any page element can have any valid name value (any valid value for any > attribute, actually). > > -- > Charlie Griefer > http://charlie.griefer.com/ > > I have failed as much as I have succeeded. But I love my life. I love my > wife. And I wish you my kind of success. > -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success.