Created
March 19, 2012 03:53
-
-
Save mlynch/2093897 to your computer and use it in GitHub Desktop.
Simple linked pages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title> | |
</title> | |
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css" | |
/> | |
<style> | |
/* App custom styles */ | |
</style> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"> | |
</script> | |
<script src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"> | |
</script> | |
</head> | |
<body> | |
<div data-role="page" id="page1"> | |
<div data-role="header"> | |
<h3> | |
Page 1 | |
</h3> | |
</div> | |
<div data-role="content"> | |
<a data-role="button" href="#page2"> | |
Go to Page 2 | |
</a> | |
</div> | |
</div> | |
<div data-role="page" id="page2"> | |
<div data-role="header"> | |
<h3> | |
Page 2 | |
</h3> | |
<a data-role="button" data-direction="reverse" data-rel="back" | |
href="#page2" data-icon="arrow-l" data-iconpos="left"> | |
Back | |
</a> | |
</div> | |
<div data-role="content"> | |
</div> | |
</div> | |
<script> | |
//App custom javascript | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Mlynch, I am trying to do something similar what you did here. In my JQuery UI designer I have added a few components. I also added a button at the bottom named it "Continue" when I click on continue I wanted to land on second page I created.So this what I coded inside my index.html
The button "Continue" is on page1 Upon click I wanted to go to page2. but when I test this it loads page1 and it goes to page2 before the button "continue" clicked.
Would you help me on this?
Thanks