The learn.jquery tutorial asks to make a list of buttons with this command:
<ul data-role="listview" data-inset="true" data-filter="true">
<li><a href="#">Acura</a></li>
<li><a href="#">Audi</a></li>
<li><a href="#">BMW</a></li>
<li><a href="#">Cadillac</a></li>
<li><a href="#">Ferrari</a></li>
</ul>
Later, learn.jquery mentions you can customize buttons with the data-role option using data-theme"a"(-"e") by
<a href="#" data-role="button" data-icon="star" data-theme="a">Button</a>
How would I use the superclass, Listview for a theme of a different letter "a"-"b" to alternate colors for the buttons?
Attempt 1 resulted in a non-themed arrow of buttons.
<ul data-role="listview" data-role="button" data-inset="true" data-filter="true">
<li><a href="#" data-theme="a">Acura</a></li>
<li><a href="#" data-theme="b">Audi</a></li>
<li><a href="#" data-theme="a">BMW</a></li>
<li><a href="#" data-theme="b">Cadillac</a></li>
<li><a href="#" data-theme="a">Ferrari</a></li>
</ul><!-- /content -->
My overall goal would be add external buttons from a search and then make them alternate colors automatically.
Exact link is at Jquery Mobile