I'm writing an MVC app and I really need a reload window after message (both error and success) closes. How can I achieve this?
Actually, I'm trying this code on my button click, but no luck:
Messenger().run({
successMessage: 'Record Removed!',
errorMessage: 'Error',
progressMessage: 'Removing record...',
events: {
"click": function () {
window.location.reload();
}
}
}, {
method: 'DELETE',
url: $(this).data('url'),
error: function (jqXHR, textStatus, errorThrown) {
return errorThrown;
}
});
CodePen to test: http://codepen.io/larissa/pen/rjOpRM/
I decide to change approach to this solution. Thanks to @codenut for the help! Using this code, works for me.