Я пытаюсь заставить эту функцию работать лучше, но у меня возникла проблема, чтобы найти решение.
Я хочу, чтобы страницы постепенно исчезали друг для друга.Любое предложение?
$('.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');
});
});
});