Using javascript / jquery, I want to open a new tab. I have this code:
window.open("../scripts/map.php", '_blank');
which does this, but I also want to attach a huge json string as a parameter. I do not want to attach it to the url. Is there a way to make a jQuery ajax call and get the returned html string set in a new tab?
Thank.
source
share