edificio
Sintaxis:
$(".selector").tooltips( { disable : true } );
Parámetros:
- Booleano: si se establece en verdadero, deshabilitará la información sobre herramientas.
Enlace CDN: Primero, agregue los scripts jQuery UI necesarios para su proyecto.
<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>
Ejemplo 1: El siguiente ejemplo muestra la opción de deshabilitar información sobre herramientas establecida en true .
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 option</h3> <script> $(function () { $("#gfg1").tooltip({ disabled: true, }); $("#gfg1").tooltip(); $("#gfg2").tooltip(); }); </script> </head> <body> <label for="name">Name:</label> <input id="gfg1" title="GeeksforGeeks" /> <p><a id="gfg2" href="" title="GeeksforGeeks"> Click here!</a></p> </body> </html>
Producción:
Ejemplo 2: El siguiente ejemplo muestra la opción de deshabilitar información sobre herramientas establecida en false . Entonces, la información sobre herramientas es visible en la imagen de salida.
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 option</h3> <script> $(function () { $("#gfg1").tooltip({ disabled: false, }); $("#gfg1").tooltip(); $("#gfg2").tooltip(); }); </script> </head> <body> <label for="name">Name:</label> <input id="gfg1" title="GeeksforGeeks" /> <p><a id="gfg2" href="" title="GeeksforGeeks"> Click here!</a></p> </body> </html>
Producción:
Referencia: https://api.jqueryui.com/tooltip/#option-disabled