Alpha 4...Error in Internet Explorer after upgrade...using jQueryMobile and ASP.Net.
Hi...
Anyone using jQueryMobile and ASP.Net.
I am getting an error after the upgrade to Alpha 4. Getting a JS error, "Error: Exception thrown and not caught".
I do not have this issue with an iPhone or Android based phones. Only on Windows Mobile 7 and also Internet Explorer 8 on desktop
Here's my simple ASP.NET page below.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a4/jquery.mobile-1.0a4.min.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.5.2.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0a4/jquery.mobile-1.0a4.min.js"></script>
</head>
<body>
<form id="form1" runat="server">
<div data-role="page">
<div data-role="header">
<h1>
Page Title</h1>
</div>
<!-- /header -->
<div data-role="content">
<p>
Page content goes here.</p>
</div>
<!-- /content -->
<div data-role="footer">
<h4>
Page Footer</h4>
</div>
<!-- /footer -->
</div>
</form>
</body>
</html>
If I were to remove the server side <form> tag then, everything is ok.
Thanks.