page refresh not working with ajax navigation?

page refresh not working with ajax navigation?

I have an index page successfully loading another page called information.php using ajax-navigation.

However, when i am looking at information.php and i press the refresh button on the web browser, it displays information.php but i lose the head.

does anyone know how to make the page reload with the missing head (from index.php)?


here is my model:

index:
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <title>index</title>
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <link rel="stylesheet" href="../css/ui-darkness/jquery-ui-1.10.2.custom.min.css" />
  7. <link rel="stylesheet" href="../css/jquery.mobile-1.3.0.min.css" />
  8. <link rel="stylesheet" href="../css/main.css" />
  9. <script type="text/javascript" src="../js/jquery-1.8.2.min.js"></script>
  10. <script type="text/javascript" src="../js/jquery.mobile-1.3.0.min.js"></script>
  11. <script type="text/javascript" src="../js/jquery-ui-1.10.2.custom.min.js"></script>
  12. </head>
  13. <body> 
  14. <div data-role="page">
  15. <div id="header" data-role="header" data-theme="a">
  16.         <h1>head</h1>
  17.  </div>
  18. <div data-role="content">
  19.         <div id="body-container">            
  20.             <a href="information.php" data-role="button">link</a>
  21.         </div>
  22.     </div>
  23.     <div data-role="footer">
  24.         <h4>FOOT</h4>
  25.     </div>   
  26. </div>
  27. </body>
  28. </html>
information.php:
  1. <div data-role="page" id="information-page">
  2. <div id="header" data-role="header" data-theme="a">
  3.         <h1>head</h1>
  4.     </div>
  5.     <div  data-role="content" id="body-inner-container">
  6.         <h1>Lorem ipsum</h1>
  7.         <p>Lorem ipsum dolor sit amet, vel veniam nostrud dolorem ea, tollit invidunt postulant mel ut. Ne has iudico lucilius. Cu his noster inimicus, mea verterem recteque ex, cu duo vide scriptorem omittantur. Nec verterem convenire efficiendi cu. Inani erant democritum vim ex, congue aeterno mea te, ne vix eripuit maluisset consequuntur.</p>
  8.     </div>
  9.     <div data-role="footer">
  10.         <h4>foot</h4>
  11.     </div>
  12. </div>