Bootstrap collapsible example
A simple example of Bootstrap collapsible.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta name="description" content="Bootstrap example for Tizen"/>
<title>Bootstrap example for Tizen</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="js/jquery-2.1.4.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Bootstrap Collapsible</h2>
<button type="button" class="btn btn-info" data-toggle="collapse" data-target="#collapsible">Collapse!</button>
<div id="collapsible" class="collapse">
This is a collapsible. You can easily put lots of text here and it will
be really nice revealed once clicked and it will be hidden
when you click it again.
</div>
</div>
<script>
</script>
</body>
</html>