jQuery Fancybox を使い終わったら、親ウィンドウを更新するのに問題があります。ファンシーボックスが開き、正常に動作しますが、onClosed イベントは機能しません。
$(document).ready(function() {
$("a#add_document_type").fancybox({
type: 'iframe',
onClosed: function() {
parent.location.reload(true);
}
});
});
テストのために、parent.location.reload(true); を置き換えました。with alert('テスト'); そこでも運がなかったので、少し途方に暮れています。誰でも提供できる助けをありがとう!