div content change only jquery Mobile
- by user3659748
I have that :
<div data-role="page" id="Home">
<div data-role="header" >
<h2 class="header">My app</h2>
</div>
<div data-role="content">
</div>
<div data-role="footer" data-position="fixed">
<div data-role="navbar">
<ul>
<li><a href="partials/home.html" data-icon="home" data-transition="slide">Home</a></li>
<li><a href="partials/about.html" data-icon="info">About</a></li>
</ul>
</div>
</div>
</div>
</body>
I want when a users click on links le content slide on a div content of for exemple home.html who have just that :
home
that is possible or not ?
Thanks :)