I have created Hover Menu with jQuery (working with PHP MVC). Assuming that I have a menu like this:
I put class active in blog link. Please see my codes:
But, when I click about link, class active is still in blog link and it's not in about link. I searched, I know that when I click other link, jQuery is reloaded so my code don't work. Have you any solution?PHP Code:<head>
<meta http-equiv="ContentType" content="text/html; charset=utf8" />
<title>Hover Menu with jQuery and CSS</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('a.tab').click(function() {
$('.active').removeClass('active');
$(this).addClass('active');
});
});
</script>
</head>




Reply With Quote



Bookmarks