I have a site like www.mysite.com
and I have there a link that looks like:
<a href="http://www.someOtherSite.com/myFeature" target="_blank">My link</a>
I want to pass plenty of parameters to the new url, I tried that with adding url parameters but it looks wrong.
My question is - how can I pass parameters without using url parameters (and this is cross domain)
Do I have to do it using window.open()
and then I can use postMessage
? I need it to open in new tab and not new window so I can't use postMessage
as far as I know.