I have the following javascript code which shows a confirm box and updates a customer table. Its used to archive customers. But the JS Alert box sometimes doesnt go away when clicking cancel? do I need to apply a wait before calling my method? what could be causing the problem? Thanks
$(function(){
$("#archiveme").click(function(){
var data = { 'cust[]' : []};
$(":checked").each(function() {
data['cust[]'].push($(this).val());
});
var askthem = confirm("Are you sure want to archive these contacts?");
if(askthem)
{
$.ajax({
type: "POST",
url: "ajax/customers-process.php?action=archive",
data: data,
cache: false,
success: function (html) {
updateCustomers(customers, corder)
}
});
}
else
{
updateCustomers(customers, corder)
}
return false;
});
});
the whole code as asked in comment.
function updateCustomers(ct,co) {
$("#customer-area").hide(200);
if (ct == "all")
{
var customers = "all";
$("#all-but").addClass("active");
$("#arc-but").removeClass("active");
$("#page-title").html('All Customers').fadeIn();
}
else if (ct == "arc")
{
var customers = "arc";
$("#arc-but").addClass("active");
$("#all-but").removeClass("active");
$("#page-title").html('Archived Customers').fadeIn();
}
var corder = co;
var datac = 'type='+ct+'&order='+co;
$("#customer-area").html('<div id="loader"><img src="img/loader.gif"></div>');
$.ajax({
type: "GET",
url: "ajax/customers.php",
data: datac,
cache: false,
success: function (html) {
$("#customer-area").ajaxComplete(function(event, request){
$("#customer-area").html(html).fadeIn(300);
$(function() {
$(".cust-order").click(function() {
var corder = $(this).attr("id");
updateCustomers(customers, corder);
});
$(function(){
$("#archiveme").click(function(){
var data = { 'cust[]' : []};
$(":checked").each(function() {
data['cust[]'].push($(this).val());
});
var askthem = confirm("Are you sure want to archive these contacts?");
if(askthem)
{
$.ajax({
type: "POST",
url: "ajax/customers-process.php?action=archive",
data: data,
cache: false,
success: function (html)
{
updateCustomers(customers, corder)
}
});
}
else
{
//close()
}
return false;
})
})
});
});
}
});
}
updateCustomersfunction could help, as the problem is not in your question's code. – Fabrício Matté Jul 12 '12 at 22:28