この機能をよりうまく機能させようとしていますが、解決策を見つけるのに問題があります。
ページを互いにフェードインおよびフェードアウトさせたい。なにか提案を?
$('.edit-account').click(function(){
$('#section-wrapper').detach();
$('#inline-cont').load('../my-profile/edit-profile.html #inline_content');
$('#inner-wrap').load('../my-profile/edit-profile.html #section-wrapper', function(){
$('#close-account').click(function() {
$('#section-wrapper').detach();
$('#inline-cont').load('../my-profile/close-account.html #inline_content');
$('#inner-wrap').load('../my-profile/close-account.html #section-wrapper');
});
});
});