Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7637435
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T07:56:19+00:00 2026-05-31T07:56:19+00:00

I have a menu that is updating based on a click event, which is

  • 0

I have a menu that is updating based on a click event, which is pretty easy because I can base the click on the actual button, but how do I make the menu react to page changes via swiping?

Here’s my working JSFiddle that allows for clicks and swipes: http://jsfiddle.net/QFX5x/1/

I started to use pagebeforeshow and .mobile.path.parseURL for the hash tag, but it isn’t consistent.

        $(document).live("pagebeforeshow", function() {
            var obj = $.mobile.path.parseUrl(window.location.href);
            var newPage = '.' + obj.hash;

            alert(newPage);

            //$(newPage).addClass("active");
            //$(newPage).siblings().removeClass("active");
        });
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T07:56:21+00:00Added an answer on May 31, 2026 at 7:56 am

    When I want to mimic some type of event I just use .trigger() to trigger that event on the correct element rather than re-writing my code to run the event handler in two different situations. Since your code works with the click event, you can trigger a click event on the correct link based on the current active list-item:

    $(function(){
    
        //cache all of the list-items in the navigation div
        var $nav   = $('#nav').children().children(),
    
            //also cache the number of list-items found
            totNav = $nav.length;
    
        //notice the use of `.on()` rather than `.live()` since the latter is depreciated
        $(document).on('swipeleft', '.ui-page', function() {
    
            //get the next index based on the current list-item with the `active` class
            var next = ($nav.filter('.active').index() + 1);
    
            //if you're already on the last page then stop the function and do nothing
            if (next === totNav) {
                return;
                //you could use this next line to wrap to the beginning rather than not doing anything
                //next = 0;
            }
    
            //trigger a `click` event on the link within the list-item at the next index
            $nav.eq(next).children().trigger('click');
    
        //notice I'm chaining the `.on()` function calls on the `$(document)` selection
        }).on('swiperight', '.ui-page', function() {
    
            //get the previous index
            var prev = ($nav.filter('.active').index() - 1);
    
            if (prev === -1) {
                return;
                //you could use this next line to wrap to the beginning rather than not doing anything
                //prev = (totNav - 1);
            }
            $nav.eq(prev).children().trigger('click');
        }).on('click', '#nav a', function(e) {
    
            //more chaining
            $(this).parent().addClass("active").siblings().removeClass("active");
        });
    });​
    

    Here is a demo: http://jsfiddle.net/QFX5x/4/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to have a menu that when I click replaces the content of
I have navigation menu that once the user click then change and fade the
I have menu button that is being put in the Navigation controller on every
I have a menu that lets you select color schemes, but i can only
I have a menu that uses SSIs, problem is the tag needs an id
My ultimate goal is to have a menu that adds a class to the
I have a menu div that I want to slide down so it's always
I have a jquery menu that has so many entries that it extends further
I have a Menu class that has a IQueryable property called WebPages. In the
I have a popup menu that has a few items in it. Option 1

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.