showing results for - "jquery pop up dialog"
Vanessa
29 Sep 2016
1<head>
2  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
3</head>
4<body>
5  <div id="sample-dialog" title="Sample dialog">
6    <p>Dialog content goes here...</p>
7  </div>
8
9  <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
10  <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
11  <script>
12    $( function() {
13      $( "#sample-dialog" ).dialog();
14    });
15  </script>
16</body>
17</html>