Skip to content

Instantly share code, notes, and snippets.

@nix010
Created January 27, 2018 19:28
Show Gist options
  • Save nix010/b9cca52e7257cfe4675faaf519d30d31 to your computer and use it in GitHub Desktop.
Save nix010/b9cca52e7257cfe4675faaf519d30d31 to your computer and use it in GitHub Desktop.
$.ajax({
method: "POST",
url: '{% url 'aj_location' %}',
dataType:'json',
data: {'data':this.dataset.gmap},
success: function(data){
if(data.is_saved){
alert('Added '+data.data.name);
}else{
alert(''+data.data.name+' is existed ', 'orange','times');
}
},
error:function (request, status, error) {
console.log(error);
alert('Error ! Try again please', 'red','times');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment