I have an inline popup that has an aspropdownlist that is NOT firing during the onChange event in IE but IS firing in Mozilla. Below is the my code. Any help would be greatly appreciated.
Code from my aspx page
Code from my aspx page
Code:
<body>
<form id="upSellForm" runat="server">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<asp:DropDownList id="upsellDescriptionDropdown" runat="server" onChange="javascript:showMe(this);">
</asp:DropDownList>
</td>
</tr>
</table>
</form>
<script type="text/javascript">
function showMe(a)
{
alert("Here I am");
}
</script>
</body>
[code]