Align button to right in listview
Description
The following code shows how to align button to right in listview.
Example
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet"
href="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.css" />
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script
src="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
</head><!--from w w w. j a v a2 s. c o m-->
<body>
<ul data-role="listview" data-theme="d" data-divider-theme="d">
<li>
<h6>Mode: repairing</h6>
<p>00 hours 00 mins 00 secs</p>
<p class="ui-li-aside">
<a href="#"
data-role="button"
class="ui-btn-right"
id="dismissbtn"
data-mini="true">Done</a>
</p>
</li>
</ul>
</body>
</html>