Skip to content

Instantly share code, notes, and snippets.

@Iheartweb
Created February 21, 2012 13:24
Show Gist options
  • Select an option

  • Save Iheartweb/1876560 to your computer and use it in GitHub Desktop.

Select an option

Save Iheartweb/1876560 to your computer and use it in GitHub Desktop.
Lists and Buttons ala treeview
<ul data-lu="List" id="tree" class="clearfix">
<li id="one" class="lu-selected">
<a href="#one" data-lu="Button:Select">One</a>
<ul data-lu="List" class="branch">
<li>
<a href="#" data-lu="Button:Select">A</a>
<ul data-lu="List" class="branch">
<li>
<a href="#" data-lu="Button:Select">Peanut Butter</a>
</li>
<li>
<a href="#" data-lu="Button:Select">Jelly</a>
</li>
</ul>
</li>
<li><!-- ... --></li>
<li><!-- ... --></li>
</ul>
</li>
<li id="two"><!-- ... --></li></li>
<li id="three"><!-- ... --></li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment