View Single Post
Old 06-19-2012, 03:10 AM   PM User | #21
ajoros
New Coder

 
Join Date: Jun 2012
Posts: 34
Thanks: 0
Thanked 0 Times in 0 Posts
ajoros is an unknown quantity at this point
Not working still... I did exactly as you said and put in the JS code:

Code:
<script type="text/javascript">
$('#treemenu1').find('a').click(function(){
$('#treemenu1').find('a').each(function(){
if (this.href==("index.php"+location.search)){
this.addClass('Active');
}else{
this.removeClass('Active');
}
})
});
</script>
*sigh*
ajoros is offline   Reply With Quote