Open In App

How to enable a jQuery UI menu ?

Last Updated : 20 Jan, 2021
Comments
Improve
Suggest changes
Like Article
Like
Report

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>
  
      <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">
      </ul>
   </body>
</html>


Output:



Next Article

Similar Reads