Re: Opening a new window from an option tag
Hi,
something like this
<select onchange="window.open(this.options[this.options.selectedIndex].value);">
<option value="http://google.com">Google</option>
<option value="http://msn.com">MSN</option>
</select>
Cheers,
Jon
|