How to disable a jQuery UI menu? Last Updated : 23 Jul, 2025 Comments Improve Suggest changes Like Article Like Report In this article we will disable a jQuery UI menu Syntax: $(".selector").menu( "disable" );Learn more about selectors and menu options in jQuery. Approach: First, add jQuery UI scripts needed for your project. <link href = "https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css" rel = "stylesheet"> <script src = "https://code.jquery.com/jquery-1.10.2.js"></script> <script src = "https://code.jquery.com/ui/1.10.4/jquery-ui.js"></script> Example 1: HTML <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <link href= "https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css" rel="stylesheet" /> <script src="https://code.jquery.com/jquery-1.10.2.js"> </script> <script src="https://code.jquery.com/ui/1.10.4/jquery-ui.js"> </script> <style> .ui-menu { width: 200px; } </style> <script> $(function () { $("#gfg").menu(); $("#gfg").menu("disable"); }); </script> </head> <body> <h1>jQuery UI | disable menu</h1> <ul id="gfg"> <li><a href="https://www.geeksforgeeks.org/">1st</a> </li> <li><a href="https://www.geeksforgeeks.org/">2nd</a> </li> <li><a href="https://www.geeksforgeeks.org/">3rd</a> </li> <li><a href="https://www.geeksforgeeks.org/">2nd</a> </li> <li><a href="https://www.geeksforgeeks.org/">5th</a> </li> </ul> </body> </html> Output: Create Quiz Comment T taran910 Follow 0 Improve T taran910 Follow 0 Improve Article Tags : JQuery jQuery-UI Explore jQuery Tutorial 7 min read Getting Started with jQuery 4 min read jQuery Introduction 7 min read jQuery Syntax 2 min read jQuery CDN 4 min read jQuery SelectorsJQuery Selectors 5 min read jQuery * Selector 1 min read jQuery #id Selector 1 min read jQuery .class Selector 1 min read jQuery EventsjQuery Events 4 min read jQuery bind() Method 2 min read jQuery blur() Method 1 min read jQuery change() Method 2 min read jQuery EffectsjQuery animate() Method 2 min read jQuery clearQueue() Method 2 min read jQuery delay() Method 2 min read jQuery HTML/CSSjQuery addClass() Method 2 min read jQuery after() Method 1 min read jQuery append() Method 2 min read jQuery TraversingjQuery | Traversing 4 min read jQuery add() method 1 min read jQuery addBack() Method 2 min read Like