Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="utf-8" />
    <title>Test Dialog</title>
    <link rel="stylesheet" href="https://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css" />
    <script src="https://code.jquery.com/jquery-1.9.1.js"></script>
    <script src="https://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
    <script src="testDialog.js"></script>
    <style>
        iframe
        {
            width: 100%;
            height: 100%;
        }
        #dialogPlace
        {
            width: 100%;
            height: 80%;
            background-color: red;
            display: none;
        }
    </style>
</head>
<body>
    <div>
        <input type="text" placeholder="Search..." />
        <button>Search!</button>
    </div>
    <div>
        <div id="dialogPlace">
        </div>
        <button id="openModalDialog">Open Modal Dialog!</button>
        <button id="openNoModalDialog">Open No Modal Dialog!</button>
    </div>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers