Back To Start Of Archive
Taken From The Forum: Help & Support for DHTML Menu Version 5+
Forum Topic: Click to view post
Last Updated: Saturday July 14 2012 - 06:07:33
Popup target size
Poster: DBookatay
Dated: Wednesday September 7 2005 - 3:09:04 BST
Is it possible to open a link in a popup window other than target=_blank? Something like a javascript:
<A HREF="javascript:void(0)" ONCLICK="open('http://www.__My_Link__.com','miniwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=800,height=600')">
I've searched and searched and searched, all I can find is target=_blank. I want it so that the url, menubar and status bar are not visable, and the size of the page is fixed...
Any help would be VERY apprechiated.
Poster: Ruth
Dated: Wednesday September 7 2005 - 19:36:58 BST
Are you talking about using the Milonic menu and the built in url and targetfeatures?
Ruth
Poster: starmetheus
Dated: Wednesday September 7 2005 - 21:16:03 BST
yeah, it's possible. as Ruth mentioned, it uses targetfeatures.
using your example, it'd look something like this:
aI("text=Link Text;url=http://www.__My_Link__.com;target=miniwin;targetfeatures=toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=800,height=600;");
Poster: DBookatay
Dated: Wednesday September 7 2005 - 22:41:06 BST
starmetheus wrote:
aI("text=Link Text;url=http://www.__My_Link__.com;target=miniwin;targetfeatures=toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=800,height=600;");
Thank you, this is exactly what I was trying to do!!!