Hi,
Here is a futher intresting one. We all use forms in our normal code to have a dropdown box or whatever.
However, I want to to be different, rather then drop down, i would like the user to "click" on the selection instead. This means it could be anything, not just a place, but could a town, city whatever, I just don't want to do it using the normal form code.
Does it involve needing to set a variable or something. The code below is an example of what I would like if only I could get the table bit to work (obviously it does not in this version, and its doesnt have to use the table code either. It does need the layer tag in though!
Cheers
Any thoughts?
James
Here is a futher intresting one. We all use forms in our normal code to have a dropdown box or whatever.
However, I want to to be different, rather then drop down, i would like the user to "click" on the selection instead. This means it could be anything, not just a place, but could a town, city whatever, I just don't want to do it using the normal form code.
Does it involve needing to set a variable or something. The code below is an example of what I would like if only I could get the table bit to work (obviously it does not in this version, and its doesnt have to use the table code either. It does need the layer tag in though!
Cheers
Code:
<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY>
<div id="Layer1" style="position:absolute; left:10px; top:156px; width:785px; height:183px; z-index:1; background-color: #99FF66; layer-background-color: #99FF66; border: 1px none #000000;">
Please select one or more destinations that you would like brochures for:
<FORM ACTION="ResponseQueryString.asp" METHOD=GET>
<Option NAME="HolidayLocation">
<table width="60%" border="1">
<tr>
<td><OPTION>Madrid</OPTION></td>
<td><OPTION>Rome</OPTION></td>
<td><OPTION>Paris</OPTION></td>
<td><OPTION>Berlin</OPTION></td>
<td><OPTION>Moscow</OPTION></td>
<td><OPTION>Birmingham</OPTION></td>
</tr>
</table>
</SELECT>
<INPUT TYPE="SUBMIT">
</p></FORM></div>
<H3>Holiday Form</H3>
<p> </p></BODY>
</HTML>
Any thoughts?
James