I would like to use jquery navigation in bar in my app,I have three views which need to link with three navigation buttons.I'm using jquery mobile 1.4
you can check my working example in here : http://jsfiddle.net/46Wax/
<div data-role="page">
<div data-rode="header">
<h3>My Header</h3>
<div>
<div data-role="content">
<div data-role="view" id="viewOne">
View One
</div>
<div data-role="view" id="viewTwo">
View Two
</div>
<div data-role="view" id="viewThree">
View Three
</div >
</div>
<div data-role="footer" style="overflow:hidden;">
<div data-role="navbar">
<ul>
<li><a href="#viewOne">One</a></li>
<li><a href="#viewTwo">Two</a></li>
<li><a href="#viewThree">Three</a></li>
</ul>
</div>
</div>
<div>
Now all three views show in one window, I want to show each view when user click on the navigation button, could anyone guide me to find proper solution to this?
Thank you in advance