I have a highlighting function using JQuery, that changes the css for the clicked <li> element in a menu. The function also prepends a pair of left brackets << to serve as pseudo arrows.

But how do I remove that << when I switch to the next <li> ?

$(".sdv-nrml").click(function(){

//remove old highlighted li 
$(".sdv-nrml").css({'background' : '#ffcc66' , 'color' : '#000000' , 'text-align' : 'right'});

//assign new css and prepend arrow
$(this).css({'background' : '#996600' , 'color' : '#ffff66' , 'text-align' : 'left'});
$(this).prepend("<< ");
});

Thanks

link|improve this question

75% accept rate
feedback

3 Answers

up vote 1 down vote accepted

I would include the << in a <span>:

$(this).prepend('<span class="prepended">&laquo; </span');

then to remove:

$(".prepend").remove();

Note: I used « instead of <<. I find it a little more appealing.

link|improve this answer
Thank you kindly. – Tom May 27 '11 at 0:43
feedback

Wrap it in a span with a class and remove that.

$(this).prepend('<span class="pseudo-arrow">&lt;&lt;</span>');
link|improve this answer
+1 Exactly what I was thinking. – Jonathan Sampson May 27 '11 at 0:38
Thanks ! Gosh, so simple ... you can tell it is getting late here, time to take a break and enjoy a beer. – Tom May 27 '11 at 0:43
feedback

why you don user a class for the selected state? .selected-item { background: #ffcc66; color: #000; text-align:right; }

So your script can be used like that:

$(".sdv-nrml").click(function(){

    //remove old highlighted li
    $(".sdv-nrml").each(function(){
        $(this).removeClass("selected arrow");
    });

    //assign new css and prepend arrow
    $(this).addClass("selected");
    $(this).prepend("<span class='arrow'>&lt;&lt;</span> ");
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.