Skip to content

Instantly share code, notes, and snippets.

@donwalter
Last active December 20, 2017 00:41
Show Gist options
  • Save donwalter/2521833 to your computer and use it in GitHub Desktop.
Save donwalter/2521833 to your computer and use it in GitHub Desktop.
jQuery Mobile Cookbook: C5R2 - Split Button List
<div data-role="page">
<div data-role="header">
<h1>Split Button</h1>
</div>
<div data-role="content">
<ul data-role="listview" data-split-icon="star" data-split-theme="c">
<li>
<a href="details.html">
<img src="http://dl.dropbox.com/u/28829261/album-bff.jpg" />
<h3>Ben Folds Five</h3>
<p>Ben Folds Five</p>
</a>
<a href="purchase.html">Purchase album</a>
</li>
<li>
<a href="details.html">
<img src="http://dl.dropbox.com/u/28829261/album-waea.jpg" />
<h3>Whatever And Ever Amen</h3>
<p>Ben Folds Five</p>
</a>
<a href="purchase.html" data-rel="dialog" data-transition="slideup">Purchase album</a>
</li>
<li>
<a href="details.html">
<img src="http://dl.dropbox.com/u/28829261/album-tuborm.jpg" />
<h3>The Unauthorized Biography Of Reinhold Messner</h3>
<p>Ben Folds Five</p>
</a>
<a href="purchase.html" data-rel="dialog" data-transition="slideup">Purchase album</a>
</li>
</ul>
</div>
</div>
name: jQuery Mobile Cookbook C5R2 - Split Button List
description: Example of a split button list in jQuery Mobile
authors:
- Don Walter
resources:
- http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.js
- http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.css
normalize_css: no
@donwalter
Copy link
Author

@donwalter
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment