jquery dialog popup window problem
        Posted  
        
            by 
                kumar
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by kumar
        
        
        
        Published on 2011-01-07T19:48:59Z
        Indexed on 
            2011/01/07
            19:53 UTC
        
        
        Read the original article
        Hit count: 195
        
JavaScript
|jQuery
I have this code
 $("#window").dialog({
          resizable: true,
          height: 180,
          title: titles,
          width: 500,
          modal: false,
          buttons: {
              "OK": function () {
                  $(this).dialog("close");
              }
          }
      });
i am able to get the popup perfectly but the problem I am getting here is..
On the top of the Dialog box I have 'X' I am not able to see that X on dialog popup's but when I resize my window I can able to see..
what I am doing wrong in this?
Thanks for your all help
© Stack Overflow or respective owner