Первая функция (может быть найдена в http://nadiana.com/jquery-confirm-plugin):
$('#confirm').confirm(
{
msg: 'You are about to delete gallery and all images related to that gallery. Are you sure?<br>',
buttons: {
separator: ' - '
}
}
);
По существу, есть вопрос Да / Нет, и если вы ответите Да, она продолжится.
Вторая функция:
$(document).ready(function() {
$('#load').hide();
});
$(function() {
$(".delete").click(function() {
$('#load').fadeIn();
var commentContainer = $(this).parent();
var id = $(this).attr("id");
var string = 'id='+ id ;
$.ajax({
url: "<?php echo site_url('gallery/delete_image') ?>",
type: "POST",
data: string,
cache: false,
success: function(){
commentContainer.slideUp('slow', function() {$(this).remove();});
$('#load').fadeOut();
}
});
return false;
});
});
Эта функция предназначена для удаления изображений. Как я могу объединить эти две функции? Сначала я хочу задать вопрос, и если нажать Да, чтобы продолжить удаление.