vote up 0 vote down star
<div class="poll"> 

	<h1>Poll</h1>
	<form name="pollvoteform1" method="post" xxaction="/plugins/content_types/poll/poll.php">
	<p class="tekstaanmelden"><b>Het regent </b></p>
    <input type="hidden" name="poll" value="1">
    <input type="hidden" name="cmd" value="">
            <div class="pollOption"><input type="radio"  class="stelling" name="poll_option1" value="1"></div><div class="pollOptionText">Eens</div><br clear="all"><div class="pollOption"><input type="radio"  class="stelling" name="poll_option1" value="2"></div><div class="pollOptionText">Oneens</div><br clear="all"><div class="pollOption"><input type="radio"  class="stelling" name="poll_option1" value="3"></div><div class="pollOptionText">Waar</div><br clear="all"><div class="pollOption"><input type="radio"  class="stelling" name="poll_option1" value="4"></div><div class="pollOptionText">Niet waar</div><br clear="all">
			<input type="button" name="bt_submit" class="pollButtonNormal" onmouseover="this.className='pollButtonHigh';" onmouseout="this.className='pollButtonNormal';" value="Stem" onclick="javascript:vote1();" style="padding-bottom: 3px; margin-top: 5px;">
			<input type="button" name="bt_submit2" class="pollButtonNormal" onMouseOver="this.className='pollButtonHigh';" onMouseOut="this.className='pollButtonNormal';" value="Bekijk resultaten" onclick="javascript:viewResults1();"  style="padding-bottom: 3px; margin-top: 5px; width:98px;">
    </form>
</div>
<div style="display:none;width: 175px;">

    <form><input type="button" name="bt_submit" class="pollButtonNormal" onmouseover="this.className='pollButtonHigh';" onmouseout="this.className='pollButtonNormal';" value="Resultaten" onclick="javascript:viewResults1();" style="padding-bottom: 3px; margin-top: 10px; "></form>
</div>

In my script I have:

var r=document.forms.pollvoteform1.poll_option1;

But I get the error:

document.forms.pollvoteform1 is undefined And I don't understand why. Since the pollvoteform1 and the poll_option_1 are both there.

//update: the full js code

    function vote() {
var r=document.forms.pollvoteform1.poll_option1;
var voted=false;
if (r.value!=null && r.checked){
voted=true;
} else {
for (i=0;i<r.length;i++){
if (r[i].checked) {
voted=true;
break;
}
}}

if (voted) {
document.forms.pollvoteform1.submit();
} else {
alert("you didn't make a choice yet");
}
}
flag

74% accept rate
Not seeing a problem with your posted code so it might be elsewhere, but I strongly advise using id attributes and getElementById where possible. – annakata May 27 at 12:18
You where right. I forgot to close a different form on the same page :-( – sanders May 27 at 12:52
can you update your title to say javascript instead of js and add the browser and version as well. That makes it clearer. – Kevin Hakanson May 27 at 12:55

3 Answers

vote up 1 vote down check

Its either

var r=document.forms['pollvoteform1'].poll_option1;

or if that dosnt work

var r=document.forms[0].poll_option1;
link|flag
the first option gave the same error. By the second one I get: r is undefined – sanders May 27 at 12:24
Im not sure what you are trying to do but maybe you want var r=document.forms[0].poll_option1.value; That would make r = 2 – nullptr May 27 at 12:28
i updated my startpost. – sanders May 27 at 12:32
vote up 1 vote down

Try adding an ID tag to the form. It should be the same as the name tag.

link|flag
same error as before – sanders May 27 at 12:41
also add ids to the input (e.g. poll_option1) – Kevin Hakanson May 27 at 12:56
vote up 0 vote down

Your code is working fine in IE7 and Firefox 3.0.10.

Which browser you are using?

link|flag
I am using firefox (latest version) – sanders May 27 at 12:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.