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

Related Articles

jQuery UI Tooltips close Event

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

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 adds new themes and allows for customization. In this article, we will see how to use close event in jQuery UI tooltips. The close event is triggered when the tooltips are closed in jQuery UI.

Syntax:

$(".selector").tooltip(
   close: function(event, ui) {}
);

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:

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 close event</h3>
  
    <script>
      $(function () {
        $("#gfgtt").tooltip({
          track: true,
          close: function (event, ui) {
            console.log("close event is fired");
          },
        });
        $("#gfg").click(function () {
          $("#gfgtt").tooltip("enable");
        });
      });
    </script>
  </head>
  
  <body>
    <input id="gfg" type="submit" name="GeeksforGeeks" value="click" />
    <span id="gfgtt" title="GeeksforGeeks"> Click here!</span>
  </body>
</html>

Output:

Reference: https://api.jqueryui.com/tooltip/#event-close


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