Jump to content

How do I get the value for an input in firefox?


tibberous

Recommended Posts

The best practice in [b]both[/b] browsers is to specifically refer to that form element from the document level, then use [i]value[/i]. So, let's say your [b]form name[/b] is "myForm" and your element is named "x" as you show. You would need to reference it like so:
[code]
myValue = document.myForm.x.value;
[/code]

Hope this helps.
Link to comment
Share on other sites

[quote author=fenway link=topic=123502.msg510847#msg510847 date=1169502876]
Actually, the "best best" way it to go through the elements collection of the form.
[/quote]

fenway, is that defining what I suggested above, or is it another approach entirely? If the latter, could you give a sample?

Thx.
Link to comment
Share on other sites

[quote author=obsidian link=topic=123502.msg510854#msg510854 date=1169503008]
[quote author=fenway link=topic=123502.msg510847#msg510847 date=1169502876]
Actually, the "best best" way it to go through the elements collection of the form.
[/quote]

fenway, is that defining what I suggested above, or is it another approach entirely? If the latter, could you give a sample?

thanks.
[/quote]

Sorry, I mean:

[code]myValue = document.forms['myForm'].elements['x'].value;
[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.