Sha256: 52af583bf7fea6ac8b15850024565dfb87d46857b7d17ce0193fdd95e4a3ec39
Contents?: true
Size: 693 Bytes
Versions: 7
Compression:
Stored size: 693 Bytes
Contents
<!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <title>jQuery UI Dialog - Default functionality</title> <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.1/themes/base/jquery-ui.css" /> <script src="jquery-1.9.1.js"></script> <script src="jquery-ui.js"></script> <link rel="stylesheet" href="style.css" /> <script> $(function() { $( "#dialog" ).dialog(); }); </script> </head> <body> <div id="dialog" title="Basic dialog"> <p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p> </div> </body> </html>
Version data entries
7 entries across 7 versions & 1 rubygems