{"id":15638496,"url":"https://github.com/manusa/mnmenu","last_synced_at":"2025-04-30T06:09:43.398Z","repository":{"id":8841573,"uuid":"10546637","full_name":"manusa/mnmenu","owner":"manusa","description":"JQuery plugin to create dropdown menus","archived":false,"fork":false,"pushed_at":"2021-12-18T16:29:52.000Z","size":596,"stargazers_count":6,"open_issues_count":1,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-30T06:09:29.526Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/manusa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-06-07T09:26:39.000Z","updated_at":"2023-05-20T14:58:41.000Z","dependencies_parsed_at":"2022-09-19T08:11:44.763Z","dependency_job_id":null,"html_url":"https://github.com/manusa/mnmenu","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manusa%2Fmnmenu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manusa%2Fmnmenu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manusa%2Fmnmenu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manusa%2Fmnmenu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/manusa","download_url":"https://codeload.github.com/manusa/mnmenu/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251651231,"owners_count":21621716,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-03T11:21:46.806Z","updated_at":"2025-04-30T06:09:43.372Z","avatar_url":"https://github.com/manusa.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"#[mnmenu](http://www.marcnuri.com/)\n\n\n##Description\n\n[JQuery](http://jquery.com/) plugin to create dropdown menus from ``\u003cul\u003e`` lists.\n\nThis is a very simple and straightforward plugin. It's still a work in progress project\nwith more features to come, so check for updates to see what's new in upcoming versions.\n\nThe aim of the project is to create a very simple to style dropdown menu. You can create\na totally styled menu in less than 100 line stylesheet.\n\n##Demo\n\nYou can try a working demo of the project at:\n**[www.marcnuri.com](http://www.marcnuri.com/content/mnmenu-dropdown-jquery-menu)**\n\nOr browsing the example.html in the examples directory. Either by downloading the file or by visiting:\n- [example.html](https://rawgithub.com/manusa/mnmenu/master/example/example.html) This example shows\na couple of menus with different styles.\n- [exampleFontAwesome.html](https://rawgithub.com/manusa/mnmenu/master/example/exampleFontAwesome.html) This example\nshows a menu that when collapsed shows a [FontAwesome](http://fortawesome.github.io/Font-Awesome/) icon.\n\n###Sites using mnMenu\n\nIf your site is using this plugin you can contact me to include it in the list.\n\n- [marcnuri.com](http://www.marcnuri.com) Author's site, uses the menu in several parts of the site.\n- [Tradival](http://www.tradival.com) Spanish transportation agency. Uses responsive menu with fontawesome.\n\n\n##Features\n\n- Nested list menu. The menu can have several nested hierarchy levels.\n- Menu calculates window bounds so that it's always in the client view area.\n- Menu can be oriented so that it displays left-to-right, right-to-left, bottom-to-top....\n- Animations for display transitions. Menu is shown and hidden with animations.\n- [HoverIntent](http://cherne.net/brian/resources/jquery.hoverIntent.html) compatible.\n- [Responsive](http://en.wikipedia.org/wiki/Responsive_web_design). Menu will collapse in devices\n  where the full first level is not visible.\n\n##Support\n\nYou can ask for support or send your feedback messages to our mailing list hosted \nin Google Groups (there's no need to register):\n\nhttps://groups.google.com/forum/#!forum/mnmenu\n\n##Requirements\n\n- This is a [JQuery](http://jquery.com/) plugin, so obviously it requires the jquery library.\n- That's it.\n\n##Usage\n\n###Html\n\nAdd JQuery and mnmenu scripts to the `\u003chead\u003e` section.\n ```html\n\u003cscript src=\"../lib/jqmin.1.10.1.js\" type=\"text/javascript\"\u003e\u003c/script\u003e\n\u003cscript src=\"../src/jquery.mnmenu.js\" type=\"text/javascript\"\u003e\u003c/script\u003e\n```\n\nThe menu should be initialized in an ``\u003cul\u003e`` element.\n\nInitialize the menu for your list:\n ```html\n\u003cscript\u003e$(document).ready(function() {\n$('#idmenu').mnmenu();\n})\u003c/script\u003e\n```\n\nThe structure of the ``\u003cul\u003e`` element must be as follows:\n ```html\n\u003cul\u003e\n    \u003cli\u003eFirst Level\n        \u003cul\u003e\n            \u003cli\u003eSecond Level\u003c/li\u003e\n            \u003cli\u003e...\u003c/li\u003e\n        \u003c/ul\u003e\n    \u003c/li\u003e\n    \u003cli\u003e\u003ca href=\"#\"\u003eFirst level as link\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n```\n\n###CSS\n\nSee the example styleIE.css for customization options.\n\n###Options\n\n- Responsive options:\n  - **responsiveMenuEnabled** Enable/disable responsive feature. Enabled by default, set this option\n     to false to disable. ```responsiveMenuEnabled: true``` \n  - **resposniveMenuButtonLabel** Text shown in the button showed when menu is collapsed \n    ```resposniveMenuButtonLabel: \"Menu\"``` \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanusa%2Fmnmenu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmanusa%2Fmnmenu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanusa%2Fmnmenu/lists"}