ダイアログ ボックス内にトグル ウィンドウを追加することは可能でしょうか? ダイアログ ボックスが開き、リンク内をクリックすると、フォームが下にスライドします。だから私はダイアログボックスを持っています
$('a.open_dialog').click(function() {
$('<div />').appendTo('body').load($(this).attr('href')).dialog({
title: $(this).attr('title'),
modal: true,
draggable: false,
width: 800,
position: 'top'
});
return false;
});
中に入れたい
$('a.mailer').click(function() {
$('#contact-wrapper').show();
});