Drop down boxes - linking e-mail addresses

They have: 5,633 posts

Joined: Jan 1970

I would like information on how to link names in a drop down box to e-mail addresses. I have seen this before but am clueless as how to do it. Anyone help?

They have: 5,633 posts

Joined: Jan 1970

INSERT WITHIN <HEAD></HEAD>:-

function mailTo(address) {
window.location.href = "mailto:" + address;
}

BODY CODE:-
<form>
<select size="1"
onChange="javascript:mailTo(this.options[selectedIndex].value)">
<option value="[email protected]">john</option>
<option value="[email protected]">mary</option>
</select>
</form>

----------
[email protected]
http://go.to/hass

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.