Hamburger Menu jQuery Plugin for Mobile Web Applications

Hamburger Menu is a jQuery mobile web app plugin that helps you create an easy-to-use mobile payment navigation menu with a fixed hamburger toggle switch.

slide and push menus with css3 transitions, push menu bootstrap 4, sticky menu bs, multi level push menu, sticky navigation examples, sticky menu on scroll

How to make use of it:

1. Load the jQuery amburgerMenu plug-in stylesheet in the header section.

<link href="css/hamburger.css" rel="stylesheet" >

2. Create a DIV item to place the push menu.

<div id="hamburgerMenu"></div>

3. Include the jQuery library and plugin script at the bottom of the web page.

<script src="/path/to/cdn/jquery.min.js"></script>
<script src="js/hamburgerMenu.js"></script>

4. Include OPTIONAL jQuery UI for additional mitigation effects.

<script src="/path/to/cdn/jquery-ui.min.js"></script>

5. Call the extension and create a set of menu items in JavaScript.

$("#hamburgerMenu").hamburgerMenu({
            mainContent: 'mainContent',
           
        }, [
            {"id":"Brain","href":"index.html","text":"Pinky"},
            {"id":"Spongebob","href":"Spongebob.html","text":"Sponge Bob"},
            {"id":"Ghostbusters","href":"Ghostbusters.html","text":"Ghostbusters"},
            {"id":"fraggle","href":"other.html","text":"Fraggle rock"}
        ]
);

6. It also supports fetching list data (JSON) from a remote source via AJAX.

$("#hamburgerMenu").hamburgerMenu({

  url: 'getMenu',
  urlType: 'get',
  urlCache: false,
  urlParam:' {id:1}',

});

Tiny Push Nav Menu with Sticky Hamburger Toggle, Hamburger Menu Plugin/Github, sticky menu examples


See Demo And Download

 

Official Website(adrianillo): Click Here

This superior jQuery/javascript plugin is developed by adrianillo. For extra Advanced Usages, please go to the official website.

Related Posts

Cookie-Consent-Using-Bootstrap

How to Create a Simple Cookie Banner Consent Using Bootstrap 4

Cookie Consent Popup Javascript – Quick and simple tutorial for creating a simple Bootstrap cookie banner. If you have a website or blog with people visiting or…

Create-HTML-Terminals

Create Custom HTML Terminals With Pure JavaScript | shell.js

Custom HTML Terminals is A JavaScript library to create HTML terminals on web pages. The shell js JavaScript library offers a straightforward method to create Ubuntu, OS X,…

Bootstrap-Alert-Bootbox

Bootstrap Alert, Confirm, and Flexible Dialog Boxes | Bootbox

Bootbox.js is a small JavaScript library that allows you to create programming dialogs using Bootstrap templates, without having to worry about creating, managing, or removing any required…

Slider-fg-carousel

An Accessible Touch-enabled Slider Web Component | fg-carousel

fg-carousel Slider – A simple & modern slider web component to create versatile, accessible, touch-enabled picture carousels utilizing CSS scroll snap, Custom Element, and Intersection Observer API….

Tags-Input-Component

A Lightweight and Efficient Tags Input Component in Vanilla JS | tagify

tagify transforms an input field or textarea into a tags component, in an easy and customizable way, with great performance and a small code footprint, full of…

copy-to-clipboard-javascript

A Lightweight Library to Copy Text to Clipboard | CopyJS

CopyJS is a lightweight JavaScript library that allows you to copy plain text or HTML content to the clipboard. Must Read: Tiny Library for Copy Text In…