jQuery UI consta de widgets GUI, efectos visuales y temas implementados mediante jQuery, CSS y HTML. jQuery UI es excelente para crear interfaces de interfaz de usuario para las páginas web. El widget de pestañas de jQuery UI nos ayuda a colocar contenido en diferentes pestañas y nos permite cambiar entre ellas. En este artículo, veremos cómo usar el método destroy() en el control deslizante jQuery UI.
El método destroy() se usa para destruir todas las pestañas en jQuery UI.
Sintaxis:
$( ".selector" ).tabs("destroy");
Parámetros: Este método no acepta ningún parámetro.
Enfoque: 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:
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> <script> $(function () { $("#gfg").tabs(); }); function g() { $("#gfg").tabs("destroy"); } </script> </head> <body> <h1>GeeksforGeeks</h1> <h3>jQuery UI tabs disable method</h3> <div id="gfg"> <ul> <li><a href="#gfg1">Tab 1</a></li> <li><a href="#gfg2">Tab 2</a></li> <li><a href="#gfg3">Tab 3</a></li> </ul> <div id="gfg1"> <p>tab Number -1</p> </div> <div id="gfg2"> <p>tab Number -2</p> </div> <div id="gfg3"> <p>tab Number -3</p> </div> </div> <button onclick="g()"> Click To Destroy </button> </body> </html>
Producción: