looking4work
Код:
$(document).ready(function() {
var baseurl = "http://www.domain.ru/";
//Profile edit buttion action
$("#edit_user_profile").click(function(){
$('#profile_info').hide(500);
$('#profile_edit').show(500);
$.post(baseurl+"customer/ajax/editprofile/", function(data){
$("#profile_edit").html(data);
});
$("#edit_user_profile").text('Сохранить').attr('id','save_user_profile');
return false;
});
//Profile edit buttion action
$("#save_user_profile").click(function(){
$("#profile_edit").hide(500);
$("#profile_info").show(500);
$("#save_user_profile").text('Редактировать').attr('id','edit_user_profile');
return false;
});
});
первая часть отрабатывает как надо, кнопка меняется, контент загружается, клик по измененной кнопке ни к чему не приводит.