treehouse : what would you like to learn today?
Web Design Web Development iOS Development

jQuery UI Accordion - Add Event to Title-Click

  • Hi everybody

    I'm looking for a way to make accordion change the page when clicking on a Title in addition to sliding down the sub-menu.

    example:
    <div id="accordion">
    <div>
    <h3><a href="index.html">Home</a></h3>
    </div>
    <div>
    <h3><a href="about.html">About</a></h3>
    <div>
    <ul>
    <li><a href="team.html">Team</a></li>
    <li><a href="agb.html">AGB</a></li>
    </ul>
    </div>
    </div>


    When I click on "Home", the Browser should jump to index.html
    When I click on "About", the Browser should jump to about.html and reveal Team and AGB.

    Anyone know how to do this?

    thanks in advance
  • Edit jquery.ui.accordion file。 Click event bind to element。

    code: Your text to link here...