I am trying to open an URL from an Ajax function, but the URL is not called.
This is my code:
$(document).on( "click",".btndriver", function() {
var id = $(this).attr("id");
var nombre = $(this).attr("nombre");
swal({
title: "Select Driver?",
text: "Select Driver? : "+nombre+" ?",
type: "warning",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "GO",
closeOnConfirm: true },
function(){
var value = {
id: id
};
$.ajax(
{
url : "ondemand_driver.php",
type: "POST",
data : value,
success: function() {
window.location(url);
}
});
});
});
What is wrong there?
I am trying to open an URL from an Ajax function, but the URL is not called.
This is my code:
$(document).on( "click",".btndriver", function() {
var id = $(this).attr("id");
var nombre = $(this).attr("nombre");
swal({
title: "Select Driver?",
text: "Select Driver? : "+nombre+" ?",
type: "warning",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "GO",
closeOnConfirm: true },
function(){
var value = {
id: id
};
$.ajax(
{
url : "ondemand_driver.php",
type: "POST",
data : value,
success: function() {
window.location(url);
}
});
});
});
What is wrong there?
Share Improve this question asked Sep 26, 2017 at 10:03 mvascomvasco 5,1017 gold badges68 silver badges137 bronze badges3 Answers
Reset to default 6You can't just call an object property key like that. It's not a variable.
Change this
window.location(url)
To this
window.location = url;
Complete Code
var url = "ondemand_driver.php";
$.ajax({
url : url,
type: "POST",
data : value,
success: function() {
window.location = url;
}
});
You need to define url as variable, the url will be opened only if the ajax request is successful.
Declared the url as variable out of ajax function
var url = "ondemand_driver.php";
$.ajax(
{
url : url,
type: "POST",
data : value,
success: function() {
window.location(url);
}
});
its work fine.