I have an inline popup that has an aspropdownlist that is NOT firing during the onChange event in IE but IS firing in Mozilla. In IE I'm getting the error "Object expected" Code 0
Below is the my code. Any help would be greatly appreciated.
Code from my aspx page
Below is the my code. Any help would be greatly appreciated.
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]