On Tue, Apr 15, 2008 at 4:34 PM, Kasey Clark <[EMAIL PROTECTED]> wrote:
>  What the plan is, is that if their score is 26-32 then they have a certain 
> personality, if their score is 20-25 then it's another, if it is 14-19 it's 
> another and if it is 8-13 then it's another. So how to I get an alert to pop 
> up with their score and the personality description for that particular 
> score? If it is too much to explain I totally understand, but I just thought 
> I would see if I could get a little bit of help. Oh ya, since each of my text 
> boxes has a different name is that what I would put in place of answer 1, 2, 
> etc in your code below?
>
>  > alert(document.getElementById('answer1').value +
>  > document.getElementById('answer2').value +
>  > document.getElementById('answer3').value +
>  > document.getElementById('answer4').value);
>
>  Thank you so much for your response I really appreciate it. I am so bad at 
> this stuff and just can't seem to figure it out.

your fields should be enclosed in <form></form> tags.

let's say you have:

<form name="foo">
<input type="text" name="bar" size="1" maxlength="1" />
</form>

you'd reference that via:

document.foo.bar.value

if your elements have an ID attribute, you don't need to traverse the
DOM, and you can reference them directly.

e.g.

<input type="text" name="bar" id="bar" size="1" maxlength="1" />

you'd reference that via:

document.getElementById('bar')

anyway... wrap your form in <form></form> tags, and use the notation
above (document.formName.fieldName.value) to try and put something
together.  You can still use the alert() example i gave you.  just use
the formName.fieldName reference instead of the getElementById().

-- 
Evelyn the dog, having undergone further modification pondered the
significance of short-person behaviour in pedal depressed,
pan-chromatic resonance, and other highly ambient domains. "Arf," she
said.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:5181
Subscription: http://www.houseoffusion.com/groups/Javascript/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.33

Reply via email to