tibberous Posted January 22, 2007 Share Posted January 22, 2007 I have an input, <input name="x">. I need to refer to the value on x. In Internet Explorer, it is x.value. How do I do it in Firefox? Quote Link to comment Share on other sites More sharing options...
obsidian Posted January 22, 2007 Share Posted January 22, 2007 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. Quote Link to comment Share on other sites More sharing options...
mainewoods Posted January 22, 2007 Share Posted January 22, 2007 give your input an id the same as it's name:[code]<input name="x" id="x"> [/code]then you can refer to it like this:[code]myValue = document.getElementById('x').value;[/code]--the getElementById() is old and highly cross browser compatable Quote Link to comment Share on other sites More sharing options...
fenway Posted January 22, 2007 Share Posted January 22, 2007 Actually, the "best best" way it to go through the elements collection of the form. Quote Link to comment Share on other sites More sharing options...
obsidian Posted January 22, 2007 Share Posted January 22, 2007 [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. Quote Link to comment Share on other sites More sharing options...
fenway Posted January 22, 2007 Share Posted January 22, 2007 [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] Quote Link to comment Share on other sites More sharing options...
obsidian Posted January 22, 2007 Share Posted January 22, 2007 [quote author=fenway link=topic=123502.msg510864#msg510864 date=1169503170]Sorry, I mean:[code]myValue = document.forms['myForm'].elements['x'].value;[/code][/quote]Ah, yes, you're probably right on that one. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.