Wednesday, 16 September 2015

BUTTON

<html>
<head>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet"></link>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js'></script>
<script>
$(document).ready(function(){
  $(".below-head-nav").click(function(){
    $($(this).nextAll(".below-head-nav-box")[0]).slideToggle("slow");
  });
});
  </script>
<style>
.ff{font-family: arial}
.table-inner{border-collapse: collapse;width: 100%;}
.table-1, .table-2 .table-3{width:30%;}
a.more:link, a.more:visited {
display: block;
font-weight: bold;
color: #FFF;
background-color: #0099ff;
width: 99%;
text-align: left;
padding: 5px;
text-decoration: none;
border: 1px solid #fff;
}
a.more:hover, a.more:active {background-color: #375998;}
.below-head-nav
{
cursor: pointer;
text-align: center;
font-family: arial;
font-weight: 700;
background-color: #375998;
color: #FFF;
padding: 5px;
border-radius: 0px;
width: auto;}
.below-head-nav-box
{
border: 1px solid #375998;    
display:none;
}

</style>
</head>
<body>
<div class="below-head-nav">
<i class="fa fa-plus-circle"></i> Read Notification In Details </div>
<div class="below-head-nav-box">
<table class="table-inner ff ft15">
<tbody>
<tr>
    <th class="table-1"><a class = "more" href="#"><i class="fa fa-search"></i>  Government Jobs</a></th>  
    <th class="table-2"><a class = "more" href="#"><i class="fa fa-search"></i>  Banking Jobs</a></th>
    <th class="table-3"><a class = "more" href="#"><i class="fa fa-search"></i>  Railways Jobs</a></th>      
</tr><tr>
    <th class="table-1"><a class = "more" href="#"><i class="fa fa-search"></i>  Teaching Jobs</a></th>  
    <th class="table-2"><a class = "more" href="#"><i class="fa fa-search"></i>  Defence Jobs</a></th>
    <th class="table-3"><a class = "more" href="#"><i class="fa fa-search"></i>  Banking Jobs</a></th>      
</tr>
</table>
</div>
</body>
</html>