Skip to content Skip to sidebar Skip to footer

On Click File Download, On Success Redirect To Another Page Using Ajax

Solution 2:

Try this,

Will take you to another page

success: function (data) {
    window.location.href = site.url + "/download-success?fid="+ id;
}

Will take you to another page in the new window

success: function (data) {
    window.open('site.url + "/download-success?fid="+ id');
}

Post a Comment for "On Click File Download, On Success Redirect To Another Page Using Ajax"