Navigation bar pressed down not working

Navigation bar pressed down not working

Hello Guys,
 
I am beginner with JQuery. Please bear with me. I am working with navbars. I am not able to highlight (pressed down) while selecting the button. Although I have added ui-btn-active, but still not working. Please help!!
 

 

 

<!DOCTYPE html>

<html>

<head>

<meta name="viewport" content="width=device-width, initial-scale=1">

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css">

<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>

<script src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.js"></script>

<script>

$(function() {

$("[data-role='header'],[data-role='footer']").toolbar();

$.mobile.window.triggerHandler("throttledresize");

 

});

</script>

 

</head>

<body>

 

<div data-role="header" data-position="fixed" data-id="header">

<h1>Global Debt Management Systems</h1>

<div data-role="navbar">

<ul>

<li><a href="#home">Home</a></li>

<li><a href="#page-1" class="ui-state-persist">My Disputes</a></li>

<li><a href="#page-2" class="ui-btn-active">Search</a></li>

</ul>

</div>

 

</div>

 

<div data-role="page" id="page-1" data-id="header">

<p style="color:red">IBM Confidential </p>

<p>This list can be used to view or modify disputes</p>

<div data-role="content">

</div>

</div>

 

<div data-role="page" id="page-2">

<div data-role="content">

 

second page

</div>

</div>

 

      

 

</body>

</ html >
 
Thanks..Johnson