Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

jQuery UI Menu destroy() Method

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The 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 a mouse and keyboard interactions for navigating between pages. In this article, we will show how to destroy a menu in jQuery UI.

Syntax:

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

Parameters: This method does not accept any parameter.

CDN Link: 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:

HTML




<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <link href=
      rel="stylesheet"/>
    <script src=
    </script>
    <script src=
    </script>
    <style>
      .ui-menu {
        width: 200px;
      }
    </style>
    <script>
      $(function () {
        $("#gfg").menu();
      });
      function gfg() {
        $("#gfg").menu("destroy");
      }
    </script>
  </head>
  <body>
    <h1>jQuery UI | destroy 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>
    <button onclick="gfg()">Click to destroy</button>
  </body>
</html>


 

Output:

Reference:https://api.jqueryui.com/menu/#method-destroy


My Personal Notes arrow_drop_up
Last Updated : 19 Feb, 2021
Like Article
Save Article
Similar Reads
Related Tutorials