Opción arrastrable de diálogo si se establece en verdadero, el cuadro de diálogo se podrá arrastrar o si se establece en falso, el cuadro de diálogo no se podrá arrastrar. De forma predeterminada, el valor es verdadero .
Sintaxis:
$( ".selector" ).dialog({ draggable: true });
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 1:
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").dialog({ autoOpen: false, draggable: true }); $("#geeks").click(function () { $("#gfg").dialog("open"); }); }); </script> </head> <body> <div id="gfg" title="GeeksforGeeks"> Jquery UI| draggable dialog option </div> <button id="geeks">Open Dialog</button> </body> </html>
Producción:
Ejemplo 2:
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").dialog({ autoOpen: false, draggable: false }); $("#geeks").click(function () { $("#gfg").dialog("open"); }); }); </script> </head> <body> <div id="gfg" title="GeeksforGeeks"> Jquery UI| draggable dialog option </div> <button id="geeks">Open Dialog</button> </body> </html>
Producción: