I have a javascript function where in one part, I perform an AJAX
call and store some information.
In the same function, I move to a new HTML
file.
window.location.href = "deals.html";
Once moving to the new deals.html
file, how can I access the information I stored earlier?
Thank you for your help.