I have created a small app having navigation UI similar to jQuery Mobile site. I have a small issue with making clickable buttons. When you look at the main page of above link, you will see small arrows at the right-most section of each list item, the problem is these arrows are not clickable. How can I make them clickable.
My code looks like this:
<div data-role="content">
<ul data-role="listview" data-inset="true" >
<li data-role="list-divider" style="background: #969696">Stuffs</li>
<li>
<a href="#link1">
<img src="someImageURL" align="middle" />
<h3>Stuff1</h3>
<p>Stuff1 description</p>
</a>
</li>
--- some <li> tags
My guess would be that #link1 is not a page or a link.
I would look over the Docs on Pages:
http://jquerymobile.com/demos/1.0a4.1/#docs/lists/lists-split.html
Live Example: http://jsfiddle.net/ZsSHE/
HTML