remove cssclass from one anchor and assign to another in jquery...
        Posted  
        
            by Pandiya Chendur
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Pandiya Chendur
        
        
        
        Published on 2010-03-30T12:46:01Z
        Indexed on 
            2010/03/30
            12:53 UTC
        
        
        Read the original article
        Hit count: 508
        
Here are my anchors,
<a ID="lnkbtn0" class="page-numbers" href="#">1</a>
<a ID="lnkbtn1" class="page-numbers" href="#">2</a>
<a ID="lnkbtn2" class="page-numbers" href="#">3</a>
<a ID="lnkbtn3" class="page-numbers" href="#">4</a>
And my click function i am adding a cssclass to show that it is the current anchor
$("a.page-numbers").click(function() {
                $(this).addClass('page-numbers current');
    });
What happens is when i click the next anchor the same class has been added to the current and the previous anchor... What can be done to remove the cssclass page-numbers current and assign cssclass page-numbers to the previous/all other anchors without changing the current one....
© Stack Overflow or respective owner