🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

Just another jQuery mobile menu plugin that turns a horizontal multi-level navigation into a mobile friendly toggle menu on small screen devices.

mobile-menu toggle-menu Navigation

Documentation

jQuery.responsiveNav plugin

Usage

Select your navigation element (the parent of your nav's root

    ) and call the responsiveNav plugin.

    $(document).ready(function(){      $('#nav').responsiveNav({...});  });

    Options

    generateMenuHandle

    Default is true. This generates a options.menuHandleText element. The tag is intended for an icon.

    menuHandleText

    Default is "Menu".

    generateBackLinks

    Default is true. This generates a

  • Back
  • element at the top of a parent's child list. Use CSS to hide or display these at the necessary breakpoints. You may also pass a function for this option, which should return the html/element you want to use for the back button.

    backLinkText

    Default is "Back".

    generateSubSectionLinks

    Default is true. This generates a copy of the parent link and places it in its child list, since parent only reveal their children during "small" behavior. You can use the subSectionLinkExists parameter to exclude certain sections. You may also pass a function for this option, which should return the html/element you want to use for the section link.

    subSectionLinkExists

    This function is passed a parent/section link and its child list (function($a, $ul){...}), which you can use to determine if a sub section link already exists. If this function returns true, a sub section link will not be generated. By default, this function looks for a child link with the same URL as its section link.

    sectionSecondTapGo

    Goes to the URL the section link specifies, after it has been clicked to reveal its children.

    generateFocusIcon

    Default is true, which appends to the links. This is typically the "plus" icon or "down" arrow that indicates the item expands/has children. You may also pass a function for this option, which should return the html/element you want to use for the icon.

    generateGoIcon

    Default is true, which appends to the links. This is typically the "right" arrow indicating that the URL takes them somewhere. You may also pass a function for this option, which should return the html/element you want to use for the icon.


You May Also Like