Nested Collapsible


Advertisements


Description

Collapsible can be nested inside other collabsible content.

Example

The below example demonstrates the use of nested collapsible in jQuery Mobile.

<!DOCTYPE html>
<head>
   <title>Collapsible nested</title>
   <meta name="viewport" content="width=device-width, initial-scale=1">
   <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
   <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
   <script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
   <div data-role="collapsible">
     <h1>Click me</h1>
     <p>This is collapsible content.</p>
     <div data-role="collapsible">
        <h1>Click me</h1>
        <p>This is nested collapsible content.</p>
     </div>
   </div>
</body>
</html>

Output

Let's carry out the following steps to see how above code works:

  • Save above html code as collapsible_nested.html file in your server root folder.

  • Open this HTML file as http://localhost/collapsible_nested.html and output as below gets displayed.