Advertisement
Guest User

Untitled

a guest
Aug 19th, 2012
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.50 KB | None | 0 0
  1. <head>
  2.    <Script>
  3.        $.mobile.loadPage( FirstPage.html, { showLoadMsg: false } );
  4.    </Script>
  5.  
  6.     <script type="text/javascript" language="javascript">
  7.         $("#start").live("pagecreate", function () {
  8.             setTimeout(function () {                
  9.                $.mobile.changePage("FirstPage.html") }, 5000);
  10.         });
  11.     </script>
  12.  
  13.  
  14. </head>
  15. <body>
  16.     <div data-role="page" id="start" >
  17.     <img src="Css/Images/start1.jpg" height="100%" width="100%" />
  18.     </div>
  19. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement