I want to hide at first then when the user clicks on , then replaces it. Here is the jquery code:
<script>
$(document).ready(function(){
$(".header-1").hide()(function(){
$(".header-0").click(function(){
$(".header-0").hide()(function(){
$(".header-1").show();
});
});
});
});
</script>
<div class="header-0">Issued<br>Appts <span class="glyphicon glyphicon-play" style="font-size:9px;"></span></div>
<div class="header-1">Issued<br>Appts <span class="glyphicon glyphicon-backward" style="font-size:9px;"></span></div>