|
#1
|
|||
|
|||
|
How do i center the window?
the link is http://dynamicdrive.com/dynamicindex8/dhtmlwindow.htm Last edited by aznkpballer; 10-23-2004 at 07:29 PM. |
|
#2
|
||||
|
||||
|
Replace the following script function:
Code:
function loadwindow(url,width,height){
if (!ie5&&!ns6)
window.open(url,"","width=width,height=height,scrollbars=1")
else{
document.getElementById("dwindow").style.display=''
document.getElementById("dwindow").style.width=initialwidth=width+"px"
document.getElementById("dwindow").style.height=initialheight=height+"px"
// Modified script starts here
if (parseInt(navigator.appVersion)>3) {
if (navigator.appName=="Netscape") {
winW = window.innerWidth;
winH = window.innerHeight;
}
if (navigator.appName.indexOf("Microsoft")!=-1) {
winW = document.body.offsetWidth;
winH = document.body.offsetHeight;
}
}
document.getElementById("dwindow").style.left=(winW/2) - (width/2)
document.getElementById("dwindow").style.top=(winH/2) - (height/2)
// Modified script ends here
document.getElementById("cframe").src=url
}
}
cr3ative
__________________
Mostly retired member, PM me if you have a specific query to make sure I recieve it :) cr3ation | cr3ation hosting | cr3ation web design | read the stickies Last edited by cr3ative; 10-23-2004 at 07:54 PM. |
|
#3
|
|||
|
|||
|
thanks for your help
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
|
|