Link to home
Start Free TrialLog in
Avatar of fledermaus
fledermaus

asked on

Popup Window

Hi there,

can someone please tell me how to set the attributes of a popup window? With attributes, I mean:

- the size of the window
- which toolbars should be visible
- ...

The goal is to make a popup window which shows a description of a word. This popup window doesn't need a toolbar/buttons except for a 'close this window' button.

tnx in advance,

fledermaus
Avatar of rag2000
rag2000

<html>
main page
---------

<head>
<title>yourPage</title>
<script language="JavaScript">
<!--
function passpop(){
window.open("yourHtmlPage.html","PopUpWindow","status=no,resize=no,menubar=no,toolbar=no,scrollbars=no,left=90,top=90,width=615,height=325,maximize=null")
}
//-->
</script>
</head>
<body>
<a href="javascript:passpop()">click this to open your popup</a>
</body>
</html>

popup page
----------
<head>
<title>popupPage</title>
<script language="JavaScript">
<!--
function closepop(){
window.close()
//-->
</script>
</head>
<body>
<a href="javascript:closepop()">close window</a>
</body>
</html>
Since you are asking in the Dreamweaver section I guess you want a Dreamweaver answer to this :-)

There is an extension in DW that does all you ask for. You can set wich toolbar/buttons to show, where the pop-up is positioned and even an autmatic closing of the pop-up window if you want.

The extension, which is free , can be found on macromomedias dreamweaver exchange:
http://www.macromedia.com/exchange/dreamweaver/ and search for 'justso'. This will give you a link to the page where you can download the extension.

Good Luck! :-)
--
klykken
Just cut and paste the below code and change as per your requirement

<html>
<head>
<title>Untitled Document</title>
<script language="JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { // v2.o
    window.open(theURL,winName,features);
}
//-->
</script>
</head>

<body bgcolor="#FFFFFF" text="#000000">
<a href="#" onClick="MM_openBrWindow('http://www.hotmail.com','name','scrollbars=yes,width=550,height=400')">CLICK HERE</a>
</body>
</html>
Avatar of fledermaus

ASKER

Hi klykken, only one question left: the solution you provided seems to be ok, except for one thing: it says onmouseOVER and I really need onmouseClick or something like that: can you tell me how I can change the onmouseover behaviour, if possible. Tnx in advance
ASKER CERTIFIED SOLUTION
Avatar of klykken
klykken

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
hi, tnx for your quick comment but...
If I click on the arrow, the only choice I can make is... onmouseover. I looked it up and when I change the onmouseover into onclick using the html editor, then it shows onclick and it works.
I have no idea why it ain't showing more events when clicking the downarrow. But anyhow: my question is answered.
If someone might know the solution for the fact that I don't get other events when clicking the downarrow... Just let me know...

michaelleke@michaelleke.com
fledermaus,
I think i know why..
in the behaviours menu, on top it says: Events for:
change this to 4.0 and later browsers.
Now you'll be able to choose from a lot of javascript events

--
klykken
ok, that's it: thank you very much !! I will learn a bit more about behaviors and Dreamweaver so I don't have to annoy you anymore ;-)

TNX !!