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,
|
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, |
|||
|
|
|
If you read the docs.
You need to explicitly compare this with true to avoid the dialog being returned as an object. |
||||
|
|
|
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.
Learned this from: http://www.sikosoft.com/item/having_trouble_with_jquerys_dialogisopen |
|||||
|
|
If you want to check if the dialog's open on a particular element you can do this:
Or if you just want to check if the element itself is visible you can do:
Or...
|
|||
|
|
|
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 |
|||
|
|
|
|||
|
|