edificio deshabilitar opción deshabilitar opcióndeshabilitar
Sintaxis:
$(".selector").tooltip("disable");
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 deshabilitar para la información sobre herramientas. Una vez que el «clic!» se hace clic en el botón, se desactiva la información sobre herramientas en el otro botó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 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>
Producción:
Referencia: https://api.jqueryui.com/tooltip/#method-disable