How to close jQuery Dialog within the dialog?

Posted by imperialx on Stack Overflow See other posts from Stack Overflow or by imperialx
Published on 2010-05-29T04:45:16Z Indexed on 2010/05/29 4:52 UTC
Read the original article Hit count: 164

Filed under:

Hello,

How to close jQuery Dialog within the dialog without using the close button?

Inside the ui dialog is a simply form request and if a successful submission occurs, then the ui dialog automatically closes and refreshes the parent page.

    <script type="text/javascript">
        $(document).ready(function () {
            $("#form-dialog").dialog({
                autoOpen: true,
                modal: true,
                width: 200,
                draggable: true,
                resizable: true
            });
        });
    </script>


    <div id="form-dialog" title="Form Submit">
    <form action="default.aspx" method="post">
    <input type="text" name="name" value=" " />    
    <input type="submit" value="submit" />
    </form>
    </div>

-imperialx

© Stack Overflow or respective owner

Related posts about jQuery