Centering Pop-Up?
- Started
- Last post
- 13 Responses
- _mak
I know.............easy easy easy.
Im in dreamweaver........is it a behaviour? ......how can you postion the new window to open exactly where you'd like on the page.
I dont mean a 'pop-up' as such, but a new window that opens when clicked.
thanks
- ********0
program it yourself, without the use of a WYSIWYG, hand-coding is a skill
- srvollmer0
Jaz, that's the most helpful thing i have ever heard.
- Bitlounge0
Try to find an extension to dreamweaver. There are some that do that center pop-up thing.
Good luck!
- ********0
just being a dick, but there must be a way to do that with Dreamweaver :)
- phenom0
Try connect yourself through meditation to the Eternal Source of All Knowledge. Let your mind go and let the answer find you in the universe. And remember to breathe.
From
The Helpful Guru
(please, no autographs)
- mort0
create a regular popup, then pick up your monitor and shake it until the popup is centered on the screen
- phenom0
Are you creating the popup or is the popup creating you?
Take some time to ponder these important questions.
- mort0
there is no popup
- phenom0
You can lead a popup to water, but you can't make hay while the sun shines.
- 8dot30
http://javascript.internet.com/p…
pretty tough. google is your friend.
- robert0
IT IS NOT A TUMOR!!!!
- err0
Man You NTers are a buch of asses. I swear everytime someone asks how to do something you guys reply with the famous "do it yourself" reply.
- mikeim0
SCRIPT LANGUAGE="JavaScript"
function openWindow(width,height,name) {
x = (300 - width)/2, y = (400 - height)/2;if (screen) {
y = (screen.availHeight - height)/2;
x = (screen.availWidth - width)/2;
}
if (screen.availWidth > 1800) {
x = ((screen.availWidth/2) - width)/2;
}window.open(name,'name','status...
}
/SCRIPT
now take that back...