MacResource
open new window from jump menu - Printable Version

+- MacResource (https://forums.macresource.com)
+-- Forum: My Category (https://forums.macresource.com/forumdisplay.php?fid=1)
+--- Forum: Tips and Deals (https://forums.macresource.com/forumdisplay.php?fid=3)
+--- Thread: open new window from jump menu (/showthread.php?tid=89026)



open new window from jump menu - bazookaman - 12-05-2009

I have a jump menu with several items that link to pages within the site. However there is one that links to an outside page. Is there a way (in the jump menu) to make that link open a new window? If it were a regular href link I could just use target="_blank", but that doesn't work in a form.


Re: open new window from jump menu - mattkime - 12-05-2009

link?


Re: open new window from jump menu - bazookaman - 12-05-2009

don't have one yet. still building. i set it on the back burner so i can finish up the rest of the site and get back to it. thought i'd post here in the interim.


Re: open new window from jump menu - Seacrest - 12-05-2009

Attach javascript event listener to the select element.
on‌change=
if(this.value=='foo'Wink{window.open(this.value,'window name','height=900,width=1024,etc'Wink
}

Better to write a function for it, however.