Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Jquery Toggle list items small problem

  • This topic is empty.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #25459
    Steven Gardner
    Participant

    Hi Guys,

    I am trying to work with jquery and want to add a cool feature to my football teams squad page.

    At the moment I have a list of players names linking to individual pages.

    I want the sames list but upon clicking the players linked name I want a short bio to appear below the players link.

    I have something worked out but its showing all links on the same click.
    $("li.profile").click(function(){
    $("p").toggle({
    });
    });

    The "p" tag is a display of none.

    I thought about uniquely naming the list items and repeating the javascript a number of times but that cant be the best way.

    any ideas please..

    Thanks

    Steven Gardner

    #60731
    Code:
    Code:
    $(“li.profile a”).click(function(e) {
    $(e.target).closest(“p”).toggle();
    return false;
    }
    #60734
    Steven Gardner
    Participant

    Are you sure that code is correct as i cant get anything to work.

    I have tried it on a single test page with a link to Jquery but i get no results.

    #60744
    apostrophe
    Participant

    I’m sure there is a more elegant solution but this works:

    Code:
    $(function() {
    $(“li.profile a”).click(function(e) {
    $(e.target).closest(“li”).find(“p”).toggle();
    return false;
    })
    });
    #60783
    Steven Gardner
    Participant

    Ok,

    Thanks for the Update!!!

    it has worked fine on a test page. My problem comes when i try to implement it on a wordpress page.

    I have linked to Jquery in the header—I have added the short script directly into the head tag on the header section.

    I have copied my text html list into the wordpress page.

    Still i have not activity when i click the links.

    Any further help would be much appreciated.

    Steven

    #60790

    That should have been

    Code:
    $(e.target).next(“p”).toggle();

    Appologies.

Viewing 6 posts - 1 through 6 (of 6 total)
  • The forum ‘JavaScript’ is closed to new topics and replies.