PLEASE HELP WHAT AM I DOING WRONG?
I have an xml list of countries in the format of
<COUNTRY value="blah" title="blah">blah blah</COUNTRY>
I have a asp dropdownlist thats populated from the extensive xml list and dropdownlist html format is:
<asp:DropDownList ID="mCOUNTRY" runat="server" Width="205" onmouseover="showHideTooltip()"> </asp:DropDownList>
-----showHideTooltip() below-----
<script language="JavaScript">
function showHideTooltip()
{
var obj = document.getElementById("mCOUNTRY");
obj.title[obj.selectedIndex].title;
}
</SCRIPT>
</CODE>