I'm developing jQuery mobile application for iPad.
- jQuery version: jquery-1.6.4.js
- jQuery mobile version : jquery.mobile-1.0rc2.js
I'm getting this error when I load in iPad.
SECURITY_ERR: DOM Exception 18: An attempt was made to break through the security policy of the user agent.
<%
if (Request.UserAgent.Contains("iPad"))
{
Response.Redirect("LoginiPad.aspx");
}
else
{
Response.Redirect("LoginSP.aspx");
}
%>
Can any one tell me how to fix this?
thanks in advance.