Jquery dialog box - doesn't fade out before closing
        Posted  
        
            by Broken Link
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Broken Link
        
        
        
        Published on 2010-05-03T18:24:11Z
        Indexed on 
            2010/05/03
            18:28 UTC
        
        
        Read the original article
        Hit count: 273
        
I have div(box) on my page and I'm using this script to display div as dialog box. Inside that div I have a hyper link, On click of the hyper link I want to fade out the dialog box and close.. The content of the dialog fades out, but the border of the dialog box remains same. If I add $("#box").dialog('close') to the click function after fadeto there is no effect.. it just closes the dialog box completely. Any help? using jquery-ui-1.7.2
<script type="text/javascript">
            $(document).ready(function(){
                 $("a#later").click(function () { 
                $("#box").fadeTo('slow', 0);
                 })
             });
            $(function () {
                $("#box").dialog({
                    autoOpen: true,
                    width: 500,
                    modal: true,
                });
            });
</script>
        © Stack Overflow or respective owner