Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using a JQuery dialog field. If it is open, I want to do one thing. If it is closed, I want to do another. My question is, how do I detect if a JQuery dialog box is open or not?

Thank you,

share|improve this question

5 Answers

up vote 48 down vote accepted

If you read the docs.

$("#mydialog").dialog( "isOpen" )

You need to explicitly compare this with true to avoid the dialog being returned as an object.

share|improve this answer
Doh! I don't know how i overlooked that. Thank you. – user208662 Jul 22 '10 at 23:11

Actually, you have explicity compare it to true. If the dialog doesn't exist yet, it will not return false (as you would expect), it will return a DOM object.

if ($("#mydialog").dialog( "isOpen" )===true) {
    //true
} else {
    //false
}

Learned this from: http://www.sikosoft.com/item/having_trouble_with_jquerys_dialogisopen

share|improve this answer
2  
Returns false in the latest JQuery. – hoyhoy Apr 20 '12 at 21:48

If you want to check if the dialog's open on a particular element you can do this:

if($("#elem").closest('.ui-dialog').is(':visible')) { 
  //do something
}

Or if you just want to check if the element itself is visible you can do:

if($("#elem").is(':visible')) { 
  //do something
}

Or...

if($("#elem:visible").length) { 
  //do something
}
share|improve this answer

jQuery dailog have isOpen property that can be used to check if jQuery dailog is open or not. You can see example at link: http://www.codegateway.com/2012/02/detect-if-jquery-dialog-box-is-open.html

share|improve this answer
$('#mydialog').dialog({
  open: function() {
    //do something
  },
  close: function() {
    //do something
  }
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.