jQuery Mobile - Collapsible Legend



Description

You can display the form elements in collapsible using a fieldset and legend.

Example

Following example demonstrates the use of collapsible forms using fieldset in jQuery Mobile.

<!DOCTYPE html>
<html>
   <head>
      <title>Collapsible Legend</title>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1">
      <link rel = "stylesheet" href = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
      <script src = "https://code.jquery.com/jquery-1.11.3.min.js"></script>
      <script src = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
   </head>

   <body>
      <form>
         <fieldset data-role = "collapsible">
            <legend>Legend</legend>
            <label for = "text-basic">Text input:</label>
            <input type = "text" name = "text-basic" id = "text-basic" 
               value = "" placeholder = "Input your text" />
            
            <fieldset data-role = "controlgroup">
               <legend>Select your favourite sport</legend>
               <input type = "checkbox" name = "checkbox-1" 
                  id = "checkbox-1" checked = "" />
               
               <label for = "checkbox-1">Baseball</label>
               <input type = "checkbox" name = "checkbox-2" id = "checkbox-2" />
               
               <label for = "checkbox-2">Cricket</label>
               <input type = "checkbox" name = "checkbox-3" id = "checkbox-3" />
               
               <label for = "checkbox-3">Football</label>
               <input type = "checkbox" name = "checkbox-4" id = "checkbox-4" />
               
               <label for = "checkbox-4">Hockey</label>
            </fieldset>
         </fieldset>
      </form>
   </body>
</html>

Output

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

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

  • Open this HTML file as http://localhost/collapsible_legend.html and the following output will be displayed.

jquery_mobile_widgets.htm
Advertisements