edificio habilitar opción habilitar opción habilitar
Sintaxis:
$(".selector").tooltip("enable");
Parámetros: este método no acepta ningún parámetro
Enlace CDN: Primero, agregue los scripts jQuery UI necesarios para su proyecto.
<enlace href = «https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css» rel = «hoja de estilo»>
<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>
Ejemplo: El siguiente ejemplo demuestra la opción de habilitar para la información sobre herramientas. La opción de seguimiento se establece en verdadero, que está habilitada. Consulte la salida para una mejor comprensión.
HTML
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <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> <h1 style="color: green">GeeksforGeeks</h1> <h3>jQuery UI | Tooltip enable method</h3> <script> $(function () { $("#gfgtt").tooltip({ track: true, }); $("#gfg").click(function () { $("#gfgtt").tooltip("enable"); }); }); </script> </head> <body> <input id="gfg" type="submit" name="GeeksforGeeks" value="click!" /> <button id="gfgtt" title="GeeksforGeeks">Click here!</button> </body> </html>
Producción:
Referencia: https://api.jqueryui.com/tooltip/#method-enable