2011-09-12, 22:38:17
I forgot the preventDefault :
$(".delete").live("click", function($e) {
$e.preventDefault();
var id = $(this).children().attr("id").split('-')[1];
var message = $("#del-" + id).attr("title");
var answer = confirm(message);
loadingAjaxIndicator.show();
if (answer){
$("#section-" + id).slideToggle('40000').remove();
if($("#divlist-" + id).length) {
$("#divlist-" + id).remove();
}
}
loadingAjaxIndicator.fadeOut(1000);
return false;
});
Sorry
$(".delete").live("click", function($e) {
$e.preventDefault();
var id = $(this).children().attr("id").split('-')[1];
var message = $("#del-" + id).attr("title");
var answer = confirm(message);
loadingAjaxIndicator.show();
if (answer){
$("#section-" + id).slideToggle('40000').remove();
if($("#divlist-" + id).length) {
$("#divlist-" + id).remove();
}
}
loadingAjaxIndicator.fadeOut(1000);
return false;
});
Sorry