"Bootstrap TreeView"
Bootstrap 3.3.0 Snippet by deaan

<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <script src="https://code.jquery.com/jquery-2.1.4.min.js"></script> <script src="http://code.gijgo.com/1.1.0/js/gijgo.js" type="text/javascript"></script> <link href="http://code.gijgo.com/1.1.0/css/gijgo.css" rel="stylesheet" type="text/css" /> <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" type="text/css" /> <div id="tree"></div> <p><a href="http://gijgo.com/Tree/Demos/bootstrap-treeview">Bootstrap TreeView</a> powered by gijgo.com</p>
$(document).ready(function() { $('#tree').tree({ dataSource: [ { text: 'North America', children: [ { text: 'USA', children: [ { text: 'California' }, { text: 'Miami' } ] }, { text: 'Canada' }, { text: 'Mexico' } ] }, { text: 'Europe', children: [ { text: 'France' }, { text: 'Spain' }, { text: 'Italy' } ] }, { text: 'South America', children: [ { text: 'Brazil' }, { text: 'Argentina' }, { text: 'Columbia' } ] } ], width: 500, uiLibrary: 'bootstrap' }); });

Questions / Comments: