Url loader is incomplete , can load links
Hi all !
i'm a web devoper from Italy...I
have a problem with loading with href
example:
i have one.html with this code
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="initial-scale=1.0, user-scalable=no">
- <meta name="apple-mobile-web-app-capable" content="yes" />
- <meta names="apple-mobile-web-app-status-bar-style" content="black-translucent" />
- <title>dkrMobile</title>
- <!--caricamento librerie-->
- <script src="js/jquery-1.9.1.min.js"></script>
- <script src="js/jquery.mobile-1.3.1.min.js"></script>
- <link rel="stylesheet" href="css/jquery.mobile-1.3.1.min.css">
- </head>
- <body>
- <!-- LOGIN -->
- <div data-role="page" id="loginPage">
- <div data-role="content">
- <div style=" text-align:center">
- <img style="width: 70%;" src="http://www.laboncloud.it/dkrmobile/css/images/logdkr.png">
- </div>
- <form action="#pageFile">
- <div data-role="fieldcontain">
- <label for="userNameLogin">
- Username
- </label>
- <input name="" id="userNameLogin" placeholder="" value="" type="text">
- </div>
- <div data-role="fieldcontain">
- <label for="passwordLogin">
- Password
- </label>
- <input name="" id="passwordLogin" placeholder="" value="" type="password">
- </div>
- <a data-role="button" data-theme="a" data-transition="fade" href="two.html" data-prefetch="trues">
- Login
- </a>
- </form>
- </div>
- </div>
- </body>
- </html>
and the two.html with this code:
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="initial-scale=1.0, user-scalable=no">
- <meta name="apple-mobile-web-app-capable" content="yes" />
- <meta names="apple-mobile-web-app-status-bar-style" content="black-translucent" />
- <title>dkrMobile</title>
- <!--caricamento librerie-->
- <script src="js/jquery-1.9.1.min.js"></script>
- <script src="js/jquery.mobile-1.3.1.min.js"></script>
- <link rel="stylesheet" href="css/jquery.mobile-1.3.1.min.css">
- <link rel="stylesheet" href="css/jqm-icon-pack-fa.css">
- <script type="text/javascript" src="js/tolito-1.0.5.min.js"></script>
- <link rel="stylesheet" type="text/css" href="css/tolito-1.0.5.min.css" />
- <!--css userinterface-->
- <link rel="stylesheet" href="css/ui.css" />
- </head>
- <body>
- <div data-role="page" id="loadingPage">
- <div data-role="content">
- <h1>caricamento di tutti i contenuti in corso</h1>
- <a data-role="button" data-theme="a" data-transition="fade" href="#pageFile">skip</a>
- </div>
- </div>
- <div data-role="page" id="pageFile">
- <div data-role="content">
- <h1>dueeee</h1>
-
- </div>
- </div>
- <!-- FILE-->
- </body>
- </html>
now if tap on login - the two.html will no be loaded.
want a demo?
if I click on skip in two.html dont show nothing (if I refresh the page it start work).
where is the problem?
thanks you guys