How to enable a jQuery UI menu ?

jQuery UI consists of GUI widgets, visual effects, and themes implemented using jQuery, CSS, and HTML. jQuery UI is great for building UI interfaces for the webpages. jQuery UI menu is a Themeable menu that is used with mouse and keyboard interactions for navigating between pages. In this article, we will show how to enable a menu in jQuery UI.

Syntax:

$(".selector").menu( "enable" );

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: In this example, we will be creating and enabling the menu for our purposes. 

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("enable");
         });
      </script>
   </head>
     
   <body>
      <h1>jQuery UI | enable menu </h1>
      <ul id = "gfg">
         <li><a href = "https://www.w3wiki.net/">1st</a></li>
         <li><a href = "https://www.w3wiki.net/">2nd</a></li>
         <li><a href = "https://www.w3wiki.net/">3rd</a></li>
         <li><a href = "https://www.w3wiki.net/">2th</a></li>
         <li><a href = "https://www.w3wiki.net/">5th</a></li>
      </ul>
   </body>
</html>


Output:



Contact Us