reload the page after clicking 'OK" using Sweetalert
Trying to reload the page after a success message, but it is not reloading..
I have this code
$.ajax({
type: "post",
url: '/action.cfm?method=quote',
data: datastring,
success: function(data) {
var valid = $.trim(data);
if (valid.toLowerCase().indexOf("error") == '-1') {
localStorage.setItem("swal", swal({
title: "Good job!",
text: 'Thanks',
type: "success",
showConfirmButton: true
}).then(function() {
location.reload();
}));
localStorage.getItem("swal");
} else {
swal("Oops", data, "error");
}
}
});
but I get an error on this
(index):389 Uncaught TypeError: Cannot read property 'then' of undefined
at Object.success ((index):389)
at fire (jquery-1.12.4.js:3232)
at Object.fireWith [as resolveWith] (jquery-1.12.4.js:3362)
at done (jquery-1.12.4.js:9840)
at XMLHttpRequest.callback (jquery-1.12.4.js:10311)
javascript jquery sweetalert2
|
show 2 more comments
Trying to reload the page after a success message, but it is not reloading..
I have this code
$.ajax({
type: "post",
url: '/action.cfm?method=quote',
data: datastring,
success: function(data) {
var valid = $.trim(data);
if (valid.toLowerCase().indexOf("error") == '-1') {
localStorage.setItem("swal", swal({
title: "Good job!",
text: 'Thanks',
type: "success",
showConfirmButton: true
}).then(function() {
location.reload();
}));
localStorage.getItem("swal");
} else {
swal("Oops", data, "error");
}
}
});
but I get an error on this
(index):389 Uncaught TypeError: Cannot read property 'then' of undefined
at Object.success ((index):389)
at fire (jquery-1.12.4.js:3232)
at Object.fireWith [as resolveWith] (jquery-1.12.4.js:3362)
at done (jquery-1.12.4.js:9840)
at XMLHttpRequest.callback (jquery-1.12.4.js:10311)
javascript jquery sweetalert2
2
localStorage.setItem
does not return apromise
, hence nothen()
.
– connexo
Jan 20 at 15:09
1
swal()
is returning the Promise, notlocalStorage.setItem
.
– Dan O
Jan 20 at 15:20
I think its sweet alert 2 that has promises
– Musa
Jan 20 at 15:52
i am using sweetalert 2
– Jynk
Jan 20 at 16:04
Shouldn't it beSwal.fire()
instead ofswal()
?
– Musa
Jan 20 at 16:14
|
show 2 more comments
Trying to reload the page after a success message, but it is not reloading..
I have this code
$.ajax({
type: "post",
url: '/action.cfm?method=quote',
data: datastring,
success: function(data) {
var valid = $.trim(data);
if (valid.toLowerCase().indexOf("error") == '-1') {
localStorage.setItem("swal", swal({
title: "Good job!",
text: 'Thanks',
type: "success",
showConfirmButton: true
}).then(function() {
location.reload();
}));
localStorage.getItem("swal");
} else {
swal("Oops", data, "error");
}
}
});
but I get an error on this
(index):389 Uncaught TypeError: Cannot read property 'then' of undefined
at Object.success ((index):389)
at fire (jquery-1.12.4.js:3232)
at Object.fireWith [as resolveWith] (jquery-1.12.4.js:3362)
at done (jquery-1.12.4.js:9840)
at XMLHttpRequest.callback (jquery-1.12.4.js:10311)
javascript jquery sweetalert2
Trying to reload the page after a success message, but it is not reloading..
I have this code
$.ajax({
type: "post",
url: '/action.cfm?method=quote',
data: datastring,
success: function(data) {
var valid = $.trim(data);
if (valid.toLowerCase().indexOf("error") == '-1') {
localStorage.setItem("swal", swal({
title: "Good job!",
text: 'Thanks',
type: "success",
showConfirmButton: true
}).then(function() {
location.reload();
}));
localStorage.getItem("swal");
} else {
swal("Oops", data, "error");
}
}
});
but I get an error on this
(index):389 Uncaught TypeError: Cannot read property 'then' of undefined
at Object.success ((index):389)
at fire (jquery-1.12.4.js:3232)
at Object.fireWith [as resolveWith] (jquery-1.12.4.js:3362)
at done (jquery-1.12.4.js:9840)
at XMLHttpRequest.callback (jquery-1.12.4.js:10311)
javascript jquery sweetalert2
javascript jquery sweetalert2
edited Jan 20 at 18:06
mplungjan
88.3k21125181
88.3k21125181
asked Jan 20 at 15:07
JynkJynk
13
13
2
localStorage.setItem
does not return apromise
, hence nothen()
.
– connexo
Jan 20 at 15:09
1
swal()
is returning the Promise, notlocalStorage.setItem
.
– Dan O
Jan 20 at 15:20
I think its sweet alert 2 that has promises
– Musa
Jan 20 at 15:52
i am using sweetalert 2
– Jynk
Jan 20 at 16:04
Shouldn't it beSwal.fire()
instead ofswal()
?
– Musa
Jan 20 at 16:14
|
show 2 more comments
2
localStorage.setItem
does not return apromise
, hence nothen()
.
– connexo
Jan 20 at 15:09
1
swal()
is returning the Promise, notlocalStorage.setItem
.
– Dan O
Jan 20 at 15:20
I think its sweet alert 2 that has promises
– Musa
Jan 20 at 15:52
i am using sweetalert 2
– Jynk
Jan 20 at 16:04
Shouldn't it beSwal.fire()
instead ofswal()
?
– Musa
Jan 20 at 16:14
2
2
localStorage.setItem
does not return a promise
, hence no then()
.– connexo
Jan 20 at 15:09
localStorage.setItem
does not return a promise
, hence no then()
.– connexo
Jan 20 at 15:09
1
1
swal()
is returning the Promise, not localStorage.setItem
.– Dan O
Jan 20 at 15:20
swal()
is returning the Promise, not localStorage.setItem
.– Dan O
Jan 20 at 15:20
I think its sweet alert 2 that has promises
– Musa
Jan 20 at 15:52
I think its sweet alert 2 that has promises
– Musa
Jan 20 at 15:52
i am using sweetalert 2
– Jynk
Jan 20 at 16:04
i am using sweetalert 2
– Jynk
Jan 20 at 16:04
Shouldn't it be
Swal.fire()
instead of swal()
?– Musa
Jan 20 at 16:14
Shouldn't it be
Swal.fire()
instead of swal()
?– Musa
Jan 20 at 16:14
|
show 2 more comments
1 Answer
1
active
oldest
votes
Make sure you're using a new version of Sweetalert (below, in jsfiddle, you can find 2.1.2) - I got warning about using deprecated showConfirmButton
and type
properties. Here's a slightly amended code that works in jsfiddle:
$(document).ready(function() {
$.ajax({
type: "post",
url: '/echo/json/',
data: {},
success: function(data) {
var valid = $.trim(data);
if (valid.toLowerCase().indexOf("error") == '-1') {
localStorage.setItem("swal", swal({
title: "Good job!",
text: 'Thanks',
icon: "success",
button: true
}).then(function() {
console.log('sth');
location.reload();
}));
localStorage.getItem("swal");
} else {
swal("Oops", data, "error");
}
}
});
});
https://jsfiddle.net/wlecki/rwc58h17/
But overall, If you have to store it in the browser's localstorage, I suggest you store just a sweetalert options there, and use them if you want to display a sweetalert:
$(document).ready(function() {
$.ajax({
type: "post",
url: '/echo/json/',
data: {},
success: function(data) {
var valid = $.trim(data);
if (valid.toLowerCase().indexOf("error") == '-1') {
localStorage.setItem("swal", JSON.stringify({
title: "Good job!",
text: 'Thanks',
icon: "success",
button: true
}));
swal(JSON.parse(localStorage.getItem("swal"))).then(() => location.reload());
} else {
swal("Oops", data, "error");
}
}
});
});
https://jsfiddle.net/wlecki/71vzasxh/
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54277772%2freload-the-page-after-clicking-ok-using-sweetalert%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Make sure you're using a new version of Sweetalert (below, in jsfiddle, you can find 2.1.2) - I got warning about using deprecated showConfirmButton
and type
properties. Here's a slightly amended code that works in jsfiddle:
$(document).ready(function() {
$.ajax({
type: "post",
url: '/echo/json/',
data: {},
success: function(data) {
var valid = $.trim(data);
if (valid.toLowerCase().indexOf("error") == '-1') {
localStorage.setItem("swal", swal({
title: "Good job!",
text: 'Thanks',
icon: "success",
button: true
}).then(function() {
console.log('sth');
location.reload();
}));
localStorage.getItem("swal");
} else {
swal("Oops", data, "error");
}
}
});
});
https://jsfiddle.net/wlecki/rwc58h17/
But overall, If you have to store it in the browser's localstorage, I suggest you store just a sweetalert options there, and use them if you want to display a sweetalert:
$(document).ready(function() {
$.ajax({
type: "post",
url: '/echo/json/',
data: {},
success: function(data) {
var valid = $.trim(data);
if (valid.toLowerCase().indexOf("error") == '-1') {
localStorage.setItem("swal", JSON.stringify({
title: "Good job!",
text: 'Thanks',
icon: "success",
button: true
}));
swal(JSON.parse(localStorage.getItem("swal"))).then(() => location.reload());
} else {
swal("Oops", data, "error");
}
}
});
});
https://jsfiddle.net/wlecki/71vzasxh/
add a comment |
Make sure you're using a new version of Sweetalert (below, in jsfiddle, you can find 2.1.2) - I got warning about using deprecated showConfirmButton
and type
properties. Here's a slightly amended code that works in jsfiddle:
$(document).ready(function() {
$.ajax({
type: "post",
url: '/echo/json/',
data: {},
success: function(data) {
var valid = $.trim(data);
if (valid.toLowerCase().indexOf("error") == '-1') {
localStorage.setItem("swal", swal({
title: "Good job!",
text: 'Thanks',
icon: "success",
button: true
}).then(function() {
console.log('sth');
location.reload();
}));
localStorage.getItem("swal");
} else {
swal("Oops", data, "error");
}
}
});
});
https://jsfiddle.net/wlecki/rwc58h17/
But overall, If you have to store it in the browser's localstorage, I suggest you store just a sweetalert options there, and use them if you want to display a sweetalert:
$(document).ready(function() {
$.ajax({
type: "post",
url: '/echo/json/',
data: {},
success: function(data) {
var valid = $.trim(data);
if (valid.toLowerCase().indexOf("error") == '-1') {
localStorage.setItem("swal", JSON.stringify({
title: "Good job!",
text: 'Thanks',
icon: "success",
button: true
}));
swal(JSON.parse(localStorage.getItem("swal"))).then(() => location.reload());
} else {
swal("Oops", data, "error");
}
}
});
});
https://jsfiddle.net/wlecki/71vzasxh/
add a comment |
Make sure you're using a new version of Sweetalert (below, in jsfiddle, you can find 2.1.2) - I got warning about using deprecated showConfirmButton
and type
properties. Here's a slightly amended code that works in jsfiddle:
$(document).ready(function() {
$.ajax({
type: "post",
url: '/echo/json/',
data: {},
success: function(data) {
var valid = $.trim(data);
if (valid.toLowerCase().indexOf("error") == '-1') {
localStorage.setItem("swal", swal({
title: "Good job!",
text: 'Thanks',
icon: "success",
button: true
}).then(function() {
console.log('sth');
location.reload();
}));
localStorage.getItem("swal");
} else {
swal("Oops", data, "error");
}
}
});
});
https://jsfiddle.net/wlecki/rwc58h17/
But overall, If you have to store it in the browser's localstorage, I suggest you store just a sweetalert options there, and use them if you want to display a sweetalert:
$(document).ready(function() {
$.ajax({
type: "post",
url: '/echo/json/',
data: {},
success: function(data) {
var valid = $.trim(data);
if (valid.toLowerCase().indexOf("error") == '-1') {
localStorage.setItem("swal", JSON.stringify({
title: "Good job!",
text: 'Thanks',
icon: "success",
button: true
}));
swal(JSON.parse(localStorage.getItem("swal"))).then(() => location.reload());
} else {
swal("Oops", data, "error");
}
}
});
});
https://jsfiddle.net/wlecki/71vzasxh/
Make sure you're using a new version of Sweetalert (below, in jsfiddle, you can find 2.1.2) - I got warning about using deprecated showConfirmButton
and type
properties. Here's a slightly amended code that works in jsfiddle:
$(document).ready(function() {
$.ajax({
type: "post",
url: '/echo/json/',
data: {},
success: function(data) {
var valid = $.trim(data);
if (valid.toLowerCase().indexOf("error") == '-1') {
localStorage.setItem("swal", swal({
title: "Good job!",
text: 'Thanks',
icon: "success",
button: true
}).then(function() {
console.log('sth');
location.reload();
}));
localStorage.getItem("swal");
} else {
swal("Oops", data, "error");
}
}
});
});
https://jsfiddle.net/wlecki/rwc58h17/
But overall, If you have to store it in the browser's localstorage, I suggest you store just a sweetalert options there, and use them if you want to display a sweetalert:
$(document).ready(function() {
$.ajax({
type: "post",
url: '/echo/json/',
data: {},
success: function(data) {
var valid = $.trim(data);
if (valid.toLowerCase().indexOf("error") == '-1') {
localStorage.setItem("swal", JSON.stringify({
title: "Good job!",
text: 'Thanks',
icon: "success",
button: true
}));
swal(JSON.parse(localStorage.getItem("swal"))).then(() => location.reload());
} else {
swal("Oops", data, "error");
}
}
});
});
https://jsfiddle.net/wlecki/71vzasxh/
answered Jan 20 at 18:19
wleckiwlecki
514
514
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54277772%2freload-the-page-after-clicking-ok-using-sweetalert%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
localStorage.setItem
does not return apromise
, hence nothen()
.– connexo
Jan 20 at 15:09
1
swal()
is returning the Promise, notlocalStorage.setItem
.– Dan O
Jan 20 at 15:20
I think its sweet alert 2 that has promises
– Musa
Jan 20 at 15:52
i am using sweetalert 2
– Jynk
Jan 20 at 16:04
Shouldn't it be
Swal.fire()
instead ofswal()
?– Musa
Jan 20 at 16:14