I only know a few basic things in JavaScript, so I need some help with this…
What I want to do is:
Have a link open a new window and in that window use 2 variables passed to edit some content. Change some text to the first variable, and change a link in that new window to the value of the second variable.
Is this possible? I’m not looking for exact code, just any resources I can look at would be just fine.
Thank you.
Although this might technically be possible, it’s not really suitable for the web and leads to security weaknesses and behaviour that users won’t expect and that browsers may block. Think of each browser window as an independent application. You would be better off using a dynamically created div (or similar) within the same page/window.
Perhaps you could explain more about WHY you think you need this.