kensington43
Technical User
I have an auto select in my Drop down where a selection takes the user to another page and it works.
Anyway to take the user to a specific part of the page where instead of it going to the top of the page it will take me to a specific part of the page?
thePage.cfm
Anyway to take the user to a specific part of the page where instead of it going to the top of the page it will take me to a specific part of the page?
Code:
<script>
function goToOtherPageMethod()
{
document.location.href=document.formName.myField[document.formName.myField.selectedIndex].value;
}
</script>
<form>
<select name = "myField" onchange="return goToOtherPageMethod()">
<option value="thePage.cfm" name="here">thePage</option>
</form>
thePage.cfm
Code:
<html>
<body>
lots of info here...<br><br>
<a href = "here"></a>
</body>
</html>