Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have a menu item that displays a DIV when clicked, but i also want the li text to change when the link is clicked and for it toggle between clicks. here is the html:

    <div class="menu">
                <ul>
                <li class="l1"><a href="javascript:toggleDiv('upgrade');" id="upgrade_link">upgrade</a></li>
                <li class="l1" style="display:none"><a href="javascript:toggleDiv('upgrade');" id="upgrade_link">Free</a></li>
                <li class="l2"><a href="#">login</a></li>
                <li class="l3"><a href="#">about</a></li>
                </ul>
            </div>

here is the jquery:

$(document).ready(function() {
        $("div.upgrade").hide();
        $("div.signup").show();
    });
    function toggleDiv(divId) {
       $("#"+divId).toggle(function() {
        $('#upgrade_link').click(function () {
            $('.l1').toggle()
        });
    });
    }
share|improve this question

2 Answers

just add this?

$('.l1').text('new text')
share|improve this answer

I guess some things are missing from your example, but you can chain things and select the parent Li to manipulate that one:

$('#upgrade_link').click(function () {
            $(this).css(or whatever).parent("li").css("background", "yellow");
        });
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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