Url loader is incomplete , can load links

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
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta name="viewport" content="initial-scale=1.0, user-scalable=no">
  6.     <meta name="apple-mobile-web-app-capable" content="yes" />
  7.     <meta names="apple-mobile-web-app-status-bar-style" content="black-translucent" />
  8.     <title>dkrMobile</title>
  9.     <!--caricamento librerie-->
  10.     <script src="js/jquery-1.9.1.min.js"></script>
  11.     <script src="js/jquery.mobile-1.3.1.min.js"></script>
  12.     <link rel="stylesheet" href="css/jquery.mobile-1.3.1.min.css">
  13. </head>
  14. <body>
  15. <!-- LOGIN -->
  16. <div data-role="page" id="loginPage">
  17.     <div data-role="content">
  18.         <div style=" text-align:center">
  19.             <img style="width: 70%;" src="http://www.laboncloud.it/dkrmobile/css/images/logdkr.png">
  20.         </div>
  21.         <form action="#pageFile">
  22.             <div data-role="fieldcontain">
  23.                 <label for="userNameLogin">
  24.                     Username
  25.                 </label>
  26.                 <input name="" id="userNameLogin" placeholder="" value="" type="text">
  27.             </div>
  28.             <div data-role="fieldcontain">
  29.                 <label for="passwordLogin">
  30.                     Password
  31.                 </label>
  32.                 <input name="" id="passwordLogin" placeholder="" value="" type="password">
  33.             </div>

  34.             <a data-role="button" data-theme="a" data-transition="fade" href="two.html" data-prefetch="trues">
  35.                 Login
  36.             </a>

  37.         </form>
  38.     </div>
  39. </div>
  40. </body>
  41. </html>
and the two.html with this code:
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta name="viewport" content="initial-scale=1.0, user-scalable=no">
  6.     <meta name="apple-mobile-web-app-capable" content="yes" />
  7.     <meta names="apple-mobile-web-app-status-bar-style" content="black-translucent" />
  8.     <title>dkrMobile</title>
  9.     <!--caricamento librerie-->
  10.     <script src="js/jquery-1.9.1.min.js"></script>
  11.     <script src="js/jquery.mobile-1.3.1.min.js"></script>
  12.     <link rel="stylesheet" href="css/jquery.mobile-1.3.1.min.css">
  13.     <link rel="stylesheet" href="css/jqm-icon-pack-fa.css">
  14.     <script type="text/javascript" src="js/tolito-1.0.5.min.js"></script>
  15.     <link rel="stylesheet" type="text/css" href="css/tolito-1.0.5.min.css" />

  16.     <!--css userinterface-->
  17.     <link rel="stylesheet" href="css/ui.css" />




  18. </head>
  19. <body>

  20. <div data-role="page" id="loadingPage">
  21.     <div data-role="content">
  22.     <h1>caricamento di tutti i contenuti in corso</h1>
  23.     <a data-role="button" data-theme="a" data-transition="fade" href="#pageFile">skip</a>
  24.     </div>
  25. </div>

  26. <div data-role="page" id="pageFile">
  27.     <div data-role="content">
  28.     <h1>dueeee</h1>
  29.     
  30.     </div>
  31. </div>

  32. <!-- FILE-->

  33. </body>
  34. </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