Forums

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

Home Forums JavaScript jQuery Accordion on Mobile Scrolls to Bottom

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #159061
    mikes02
    Participant
        // Accordion
    var icons = {
        header: "iconOpen",    // custom icon class
        activeHeader: "iconClosed" // custom icon class
    };
    
    $('#accordion').accordion(
    {
        icons: icons,
        heightStyle: "content",
        collapsible: true,
    });
    

    For some reason, when the bottom accordion tab is clicked on my iPhone the content expands but the screen doesn’t stay with the content, I wind up at the bottom of the page, any ideas on how to fix this? I have searched Google exhaustively for solutions and can’t find anything.

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