I am not too good with javascript. How do I get the pages to come up if a user selects a particular list item. Each item has a different address. For example if the user selects "Personnel Information" then they will be directed to " My code for the list is:
<select name="select" size="1">
<option value="Personnel Information">Personnel Information</option>
<option value="Hardware Information">Hardware Information</option>
<option value="Software Information">Software Information</option>
<option value="Licences you hold">Licences you hold</option>
<option value="Password/Username">Password/Username</option>
</select>
<input type="submit" name="Submit" value="Submit">
</p>
</form>
I just want to change it so it can redirect to each page, probably using IF statements I guess. Cheers for the help all!
<select name="select" size="1">
<option value="Personnel Information">Personnel Information</option>
<option value="Hardware Information">Hardware Information</option>
<option value="Software Information">Software Information</option>
<option value="Licences you hold">Licences you hold</option>
<option value="Password/Username">Password/Username</option>
</select>
<input type="submit" name="Submit" value="Submit">
</p>
</form>
I just want to change it so it can redirect to each page, probably using IF statements I guess. Cheers for the help all!