DanielHowden
Technical User
I want the inserted text to be under the droplist not on top of it!
<html>
<body>
<script type="text/javascript">
function showSelected(val)
{
document.getElementById('selectedResult').innerHTML="<a href='mailto:" + val + "'>" + val + "</a><p><font size=3></font> </p>"
}
</script>
<div id='selectedResult'></div>
<!-- This sets up the drop down list of names -->
<select name='test' onChange='showSelected(this.value)' ID=Select1>
<option value='user.1@email.net'>First User</option>
<option value='user.2@email.net'>Second User</option>
</select>
</body>
</html>
<html>
<body>
<script type="text/javascript">
function showSelected(val)
{
document.getElementById('selectedResult').innerHTML="<a href='mailto:" + val + "'>" + val + "</a><p><font size=3></font> </p>"
}
</script>
<div id='selectedResult'></div>
<!-- This sets up the drop down list of names -->
<select name='test' onChange='showSelected(this.value)' ID=Select1>
<option value='user.1@email.net'>First User</option>
<option value='user.2@email.net'>Second User</option>
</select>
</body>
</html>