Add navbar on top on header

Description

The following code shows how to add navbar on top on header.

Example


<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
  src='http://code.jquery.com/jquery-1.8.3.js'></script>
<script type="text/javascript"
  src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.js"></script>
<link rel="stylesheet" type="text/css"
  href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.css">
<script type='text/javascript'>//<![CDATA[ 
$(window).load(function(){<!--   w  w w  .  j a  v a  2 s.  co m-->
    $("div[data-role=header]").on("click", function () {
        $("div[data-role=navbar]").slideToggle(200);
    });
});//]]>  
</script>
</head>
<body>
  <div data-role="page">
    <div data-role="navbar">
      <ul>
        <li><a href="">Settings</a></li>
        <li><a href="">Whatever</a></li>
      </ul>
    </div>
    <div data-role="header">
      <h1>Hide the Toolbar</h1>
    </div>
    <!-- /header -->
    <div data-role="content">
      <p>Page content goes here.</p>
    </div>
    <!-- /content -->
    <div data-role="footer">
      <h4>Page Footer</h4>
    </div>
    <!-- /footer -->
  </div>
  <!-- /page -->
</body>
</html>

Click to view the demo





















Home »
  jQuery Mobile »
    Example »




Button
Button Event
Button Icon
Button Text
Checkbox
Collapsible
Date
Dialog
Event
Footer
Form
Header
Icon
Input
Layout
Listview
Listview Divider
Listview Item
Loader
mobile_settings
Navbar
Page
Page Event
Popup
Radio
Select
Slider
Switch
Textarea
Theme