Results 1 to 2 of 2

Thread: Question & Answer form

  1. #1
    Join Date
    Mar 2005
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Question & Answer form

    I have been to a website offering free scripts and managed to find a Question & Answer form.
    The script works fine except for the 'answer' section which is continually blank. I am able to change the questions but not the answers. Can anyone see the error in the script. Any help appreciated.


    <form name="form1"> <table border="0"> <tr>
    <td> <script language="JavaScript"> <!-- This script
    supplied free by Hypergurl.com http://www.hypergurl.com --> <!-- function
    showAnswer(whatForm){ if(document.forms[whatForm].question.value=="none"){
    document.forms[whatForm].answer.value="^ Please select a question above ^"
    }else{ document.forms[whatForm].answer.value=document.forms[whatForm].question.value
    }} // --> </script> <b>Please select a question:</b> </td>
    <td valign="top"> <select name="question" size="1"
    onChange="showAnswer('form1')"> <option value="none">
    </option> <option value="Your answer!">Your question?</option>
    <option value="Your answer!">Your question? </option> <option
    value="Your answer!">Your question?</option> <option value="Your
    answer!">Your question?</option> </select> </td> </tr>
    <tr> <td align="right"><b>Here is your answer:</b>
    </td> <td> <textarea name="answer" rows="8"
    cols="40" readonly></textarea> </td> </tr> </table>
    </form>

  2. #2
    Join Date
    Nov 2006
    Posts
    20
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    HTML Code:
    <select name="question" size="1" onChange="showAnswer('form1');"> 
    <option value="none"> </option> 
    <option value="Your answer 1!">Your question? 1</option> 
    <option value="Your answer 2!">Your question? 2</option> 
    <option value="Your answer 3!">Your question? 3</option> 
    <option value="Your answer 4!">Your question? 4</option> 
    </select> 
    Hope the above code will give u a better picture

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •