Let's say I have this function in a javascript on my web page that loads a url from an textfield with id url:
function loadUrl() { var url = document.getElementById('url').value; window.open(url, 'urlwindow'); } If I open two tabs in my browser and opens my web page in both tabs, I want both tabs to open the url in the same window, not two separate windows. Is this possible?
In other words, I want to target window opened from another tab.