Create a collapsible
Description
The following code shows how to create a collapsible.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.9.1.js'></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css">
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
</head><!--from w w w .jav a2s .com-->
<body>
<div data-role="collapsible">
<h3>I'm a collapsible</h3>
<p>I'm the collapsible content. By default I'm closed, but you can
click the header to open me.</p>
</div>
</body>
</html>