Open In App
Related Articles

jQuery UI Tooltips disable() Method

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 tooltip widget helps us to add new themes and allows for customization. In this article, we will see how to use disable option in jQuery UI tooltips. The disable option is used to disable the tooltips in jQuery UI.

Syntax:

$(".selector").tooltip("disable");

Parameters: This method does not accept any parameters.

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: The following example demonstrates the disable option for the tooltip. Once the “click!” button is clicked, it disables the tooltip in the other button.

HTML




<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <link
      href=
      rel="stylesheet"
    />
    <script src=
    </script>
    <script src=
    </script>
  
    <h1 style="color: green">GeeksforGeeks</h1>
    <h3>jQuery UI | Tooltip disable method</h3>
  
    <script>
      $(function () {
        $("#gfgtt").tooltip({
          track: true,
        });
        $("#gfg").click(function () {
          $("#gfgtt").tooltip("disable");
        });
      });
    </script>
  </head>
  
  <body>
    <input id="gfg" type="submit" name="GeeksforGeeks" value="click!" />
    <button id="gfgtt" title="GeeksforGeeks">Click here!</button>
  </body>
</html>


Output:

Reference: https://api.jqueryui.com/tooltip/#method-disable


Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 05 Feb, 2021
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials