i need help with this one. I have my function working well with ajax, but i need a ok / cancel delete confirmation box before i send ajax request in order to remove item from database. This is my code:
delete_article = function(article_id){
$.ajax({
type:"POST",
url: "<?php echo base_url()?>admin/article/delete_article",
data: "article_id="+article_id,
asynchronous: true,
cache: false,
beforeSend: function(){
},
success: function(){
$('#articletr'+article_id).hide();
}
});
}
})
i need help with this one. I have my function working well with ajax, but i need a ok / cancel delete confirmation box before i send ajax request in order to remove item from database. This is my code:
delete_article = function(article_id){
$.ajax({
type:"POST",
url: "<?php echo base_url()?>admin/article/delete_article",
data: "article_id="+article_id,
asynchronous: true,
cache: false,
beforeSend: function(){
},
success: function(){
$('#articletr'+article_id).hide();
}
});
}
})
Share
Improve this question
edited Apr 10, 2017 at 21:11
m1k1
asked Feb 2, 2013 at 1:02
m1k1m1k1
1431 gold badge2 silver badges13 bronze badges
1
- 1 cache is misspelled – HPWD Commented Apr 9, 2017 at 15:05
2 Answers
Reset to default 9var answer = confirm ("Are you sure you want to delete from the database?");
if (answer)
{
// your ajax code
}
If you want more control over these kinds of modal dialog prompts with JQuery (buttons that say something other than OK/cancel, more than two buttons, or different styles), you can use JQuery UI Modal Confirmation.
The simplest way is to use the builtin javascript method confirm
:
if (confirm("Really send?")) {
// Do it!
}
Since those native browser dialogs have a very ugly history and can not be styled at all they are often avoided in favour of other methods. A great examples is the Dialog widget of JQuery UI