I have a form that forwards to URLs when the options are clicked on. I want to add in tooltips through “Overlib” software http://tinyurl.com/ndmpr. I need to add in an “id” attribute in the option tag and have a mouseover of an item in the list create a tooltip, and a click through create a new page (destination URL).
The working onchange looks like this..
<form>
<label>Archive of Past Articles</label>
<select ONCHANGE=”location = this.options[this.selectedIndex].value;”>
<optgroup label=”Choose an Article”>
<option value=”http://search.msn.com/”>Test1</option>
<option value=”http://www.google.com/”>Test2</option>
<option value=”http://www.search.com/”>Test3</option>
</optgroup>
</select>
</form>
Now I need the mouseover tooltip..