Hi. I've been creating a very simple test HTML form that utilizes javascript. All I have on the form is a dropdown, with three options: 1, 2, and 3. Then, I have a submit button. When pressed, a message is supposed to be displayed to the screen saying "You selected option1!" etc.
However, what happens, is that it loops through everything, so I see:
"You selected option1"
"You selected option2"
"You selected option3"
I don't understand why it is looping. I don't use any looping functions. My code below is:
Bookmarks