asp DropDownList + ie 10 not expanding

asp DropDownList + ie 10 not expanding

Helllo,

I'm using ASP.NET + jQuery Mobile. I've heard that is not a good mix but I like it. I've just run into a problem that I don't know how to solve: asp:DropDownList doesn't work with Internet Explorer 10, it doesn't expand, actually It expands if you click the dropdown twice but that shouldn't be the normal behaviour.

Does anyone have any idea?

Thanks!

  
  1. <asp:DropDownList data-theme="a" ID="ddlMenu" runat="server" data-ajax="false" OnSelectedIndexChanged="ddlMenu_SelectedIndexChanged" AutoPostBack="true">
  2.     <asp:ListItem Text=1" Value=""></asp:ListItem>
  3.     <asp:ListItem Text="2" Value="0"></asp:ListItem>
  4.     <asp:ListItem Text="3" Value="1"></asp:ListItem>
  5.     <asp:ListItem Text="4" Value="2"></asp:ListItem>
  6.     <asp:ListItem Text="5" Value="3"></asp:ListItem>
  7.     <asp:ListItem Text="6" Value="4"></asp:ListItem>
  8. </asp:DropDownList>