ウェブサイトをクリックしてモーダルウィンドウを閉じています。
しかし、クリックがモーダルウィンドウの内側または外側で発生したかどうかを実際に確認する方法は?
$(document).click(callself(this, function (inst, event) {
var modalElement = $(selector);
if (modalElement.css("display") == "block") {
this.closeButtonClicked();
}
}));