Search…

X3 Photo Gallery Support Forums

Search…
 
Galium
Experienced
Topic Author
Posts: 97
Joined: 29 Sep 2006, 03:20

Link and javascript

17 May 2007, 01:56

In a description, I have a link to a page : is it possible to open this page in a window, with the size fixed?
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: Link and javascript

18 May 2007, 10:18

Galium wrote:In a description, I have a link to a page : is it possible to open this page in a window, with the size fixed?
You mean a popup window by javascript I presume? There is atleast no other way to open a window with a fixed size.

In your description, try the following:
Code
<a href="javascript:window.open('link','win_name','width=400, height=250,toolbar=0,location=0,directories=0,status=0,menubar=0, scrollbars=0,resizable=0,top='+Math.round(screen.height/2-125)+', left='+Math.round(screen.width/2-200)+'');void(0);"> link text here</a>