Given a list of jquery mobile items.
<ul data-role=listview" data-inset="true">
<li><a href="/dostuff?item=1">One</a></li>
<li><a href="/dostuff?item=2">One</a></li>
<li><a href="/dostuff?item=3">One</a></li>
</ul>
Is there a best practice way of doing the following:
jquery mobile does a whole lot of ajax work out of the box. What is the best way to achieve this. I don't want to write a ton of jquery to do it if there's a better way.
I can set data-role="button" on each of the li items, but would prefer the styling to stay the same. There doesn't appear to be an equivalent data-role="submit" though that would probably be perfect.
Thanks