I have a select dropdown list that contains the names of sites. When you select a name I want a new page, or tab, to open in the user's browser that contains the selected page. I don't want to just do a window.location.href=new page and put the new page in the existing window.
I could do a window.open(url), where url is what was selected from the dropdown, but Safari blocks that as a popup.
Clicking on the name in the dropdown needs to have the save effect as clicking the link
<a href="/chosen_site" target="_blank">View site</a>
Does anyone have any thoughts on how I can do this?
Thanks