Open In App
Related Articles

How to enable a jQuery UI menu ?

Improve Article
Improve
Save Article
Save
Like Article
Like

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
         rel = "stylesheet">
      <script src = "https://code.jquery.com/jquery-1.10.2.js"></script>
  
      </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.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/">2th</a></li>
         <li><a href = "https://www.geeksforgeeks.org/">5th</a></li>
      </ul>
   </body>
</html>

Output:


Last Updated : 20 Jan, 2021
Like Article
Save Article
Similar Reads
Related Tutorials