I have an Ajax call that returns some json data when it is successful.
This data needs to be displayed on another page that user will be redirected to.
window.location.replace('http://example.com/newpage');
And on this page the data should be displayed.
Apart from sessions/cookies is there any other way to carry this data? Or is sessions the normal way this is done?