Opennewwindow
TotempaaltJ - 28/02/2007 17:50
PHP interesse
Ik heb een functie:
<? Kleur
function openNewWindow(url) {
popupWin = window.open(url,
'open_window', 'width=333, height=122, left=0, top=0')
}
<? Kleur
function openNewWindow( url) {
popupWin = window. open( url,
'open_window' , 'width=333, height=122, left=0, top=0' )
}
En ik wil deze ongeveer zo hebben:
<? Kleur
function openNewWindow(url, width, height) {
popupWin = window.open(url,
'open_window', 'width='width', height='height', left=0, top=0')
}
<? Kleur
function openNewWindow( url, width, height) {
popupWin = window. open( url,
'open_window' , 'width=' width', height=' height', left=0, top=0' )
}
Ik heb geen idee hoe dit moet!
3 antwoorden
Gesponsorde links
Ibrahim - 28/02/2007 17:53
PHP expert
<? Kleur
function openNewWindow(url, width, height) {
popupWin = window.open(url,
'open_window', 'width='+width, height='+height, left=0, top=0')
}
<? Kleur
function openNewWindow( url, width, height) {
popupWin = window. open( url,
'open_window' , 'width=' + width, height= '+height, left=0, top=0' )
}
TotempaaltJ - 28/02/2007 17:56 (laatste wijziging 28/02/2007 18:10)
PHP interesse
Je bedoelt waarschijnlijk:
<? Kleur
function openNewWindow(url, width, height) {
popupWin = window.open(url,
'open_window', 'width='+width', height='+height', left=0, top=0')
}
<? Kleur
function openNewWindow( url, width, height) {
popupWin = window. open( url,
'open_window' , 'width=' + width', height=' + height', left=0, top=0' )
}
Edit:
Hoe gebruik ik deze? Iets van:
openNewWindow('http://www.pumpkinjuice.nl', 333, 333);
Edit again:
Dat werkte dus niet... Met qoutes om de getallen?
Dark_Paul - 28/02/2007 19:02
PHP ver gevorderde
<? Kleur
function openNewWindow(url, width, height) {
popupWin = window.open(url,
'open_window', 'width='+width, 'height='+height, 'left=0', 'top=0')
}
<? Kleur
function openNewWindow( url, width, height) {
popupWin = window. open( url,
'open_window' , 'width=' + width, 'height=' + height, 'left=0' , 'top=0' )
}
Gesponsorde links
Dit onderwerp is gesloten .