[jQuery] Re: Form inside Form value

2009-02-28 Thread tres
The different way would be to remove the nested form and place the fields that were inside the nested form in the parent form. There are ways to post only specific fields. I don't see why this is necessary. Also, this messes up browser functionality; when the nested form is submitted, it submits

[jQuery] Re: Form inside Form value

2009-02-27 Thread MorningZ
starting with valid HTML, something nested tags certainly isn't, would be a great start towards doing "possible" coding as for jQuery being involved in this, it wouldn't really care if you had On Feb 27, 8:31 pm, Po01 wrote: > Can you give me a different way? > I cant believe

[jQuery] Re: Form inside Form value

2009-02-27 Thread Po01
Can you give me a different way? I cant believe its impossible to get the value of a field inside a form when both are inside another form. Thanks. On 27 fev, 18:34, tres wrote: > Do it a different way. > > On Feb 28, 6:20 am, Po01 wrote: > > > Oh, and i know its not under "webstandarts" but i

[jQuery] Re: Form inside Form value

2009-02-27 Thread tres
Do it a different way. On Feb 28, 6:20 am, Po01 wrote: > Oh, and i know its not under "webstandarts" but i really need to get > the value. > Yes the email is the name of the label field. > > On 27 fev, 16:14, Po01 wrote: > > > Tried the $("form2 field").val(); but remember that form2 is a > >

[jQuery] Re: Form inside Form value

2009-02-27 Thread Po01
Oh, and i know its not under "webstandarts" but i really need to get the value. Yes the email is the name of the label field. On 27 fev, 16:14, Po01 wrote: > Tried the $("form2 field").val(); but remember that form2 is a > variable, tried some stuff but it doesnt work. > Also tried $(Form2).find

[jQuery] Re: Form inside Form value

2009-02-27 Thread Po01
Tried the $("form2 field").val(); but remember that form2 is a variable, tried some stuff but it doesnt work. Also tried $(Form2).find('input[name="email"]').get(0).val(); and.. cant get the value =( On 27 fev, 06:43, saifullah hanif wrote: > http://tinyurl.com/cyecufhttp://tinyurl.com/ahvxzc >

[jQuery] Re: Form inside Form value

2009-02-27 Thread saifullah hanif
http://tinyurl.com/cyecuf http://tinyurl.com/ahvxzc http://tinyurl.com/8rwmkr http://tinyurl.com/7wbm8o On 2/27/09, Po01 wrote: > > > Hi, i have a HTML like that: > > > > > > > > Supposing the field name is email, how can i get its value using > Javascript/JQuery? > I tried some stuff.. wi

[jQuery] Re: Form inside Form value

2009-02-27 Thread Charles Liu
1st, why do you use 2 forms together? 2nd, when you say "email filed", do you mean "" ? if so, you can use $("#form2_id").find('input[name="email"]').get(0).val(); maybe not so accurate, hope it'll be any help. Charles 2009/2/27 Po01 > > Hi, i have a HTML like that: > > > > > > > > Suppos

[jQuery] Re: Form inside Form value

2009-02-27 Thread Mauricio (Maujor) Samy Silva
What are the purpouses of nested forms? Nested forms aren't allowed in HTML markup. Maurício -Mensagem Original- De: "Gordon" Para: "jQuery (English)" Enviada em: sexta-feira, 27 de fevereiro de 2009 06:34 Assunto: [jQuery] Re: Form inside Form value You

[jQuery] Re: Form inside Form value

2009-02-27 Thread Gordon
You cannot have forms within forms, they violate the rules regarding how a HTML document should be structured. Furthermore, the browser and the server both have no clue how to deal with them. On Feb 27, 9:18 am, Po01 wrote: > Hi, i have a HTML like that: > > > > > > > > Supposing the field

[jQuery] Re: Form inside Form value

2009-02-27 Thread Liam Potter
$(function() { $("form2 field").val(); }); Po01 wrote: Hi, i have a HTML like that: Supposing the field name is email, how can i get its value using Javascript/JQuery? I tried some stuff.. without success.. The form 2 name Im getting as a variable, like: function values(id) { var ID