|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
||||
|
||||
|
new window no buttons
Is it possible to open a link and have no buttons, without actuall opening a new window? The reason I ask is I would like my php program to have as much viewing space possible. I have tried using javascript to open a new window and kill the existing one, but some browser get the prompt"someone is trying to close window.."
|
|
#2
|
|||
|
|||
|
RE: new window no buttons
Your question is not very clear. Are you asking this question about a pop-up window generated with Javascript?? Can you please make up this thing clear.
|
|
#3
|
||||
|
||||
|
RE: new window no buttons
Sorry for not being very clear, I want to link from a normal page to a page that has no buttons to maximize viewing space, I was assuming javascript was the answer. I prefer not to open a new window. I hope this makes sense
|
|
#4
|
|||
|
|||
|
RE: new window no buttons
You should open a new window for that... Use this Javascript code!
Code:
<script language="JavaScript">
function logWin(openPage,winName,args){
window.open(openPage,winName,args);
}
</script>
<a href="javascript:logWin('test.htm','NewWin','width=800,h eight=600,resizable=no,scrollbars=no,status=0')">Click</a>
|
![]() |
| Viewing: Codewalkers Forums > Other Technologies > Client Side Things > new window no buttons |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|