Hello
I have a page of 2 frame:
menu (menu.php)
corpo (corpo.php)
In menu.php i have:
<script>
function selAut(){
aut=autore.sele ctedIndex;
aut=autore.opti ons[aut].value;
parent.corpo.lo cation.href('ht tp://www.laltrarete. it/mipiace/corpo.php?autor e=aut');
return true
}
</script>
seleziona gli articoli per autore:
<select name="autore" onsubmit="selAu t()" target="corpo">
But the browser try to open 'MENU.php?autor e=aut'
instead of
CORPO.php?.....
as i'd like.
I tried even with
window.open('ht tp://www.laltrarete. it/mipiace/corpo.php?autor e=aut',
'corpo');
but i got the same problem
Any suggestion?
thanks in advance
and sorry for my bad english
Marcello
I have a page of 2 frame:
menu (menu.php)
corpo (corpo.php)
In menu.php i have:
<script>
function selAut(){
aut=autore.sele ctedIndex;
aut=autore.opti ons[aut].value;
parent.corpo.lo cation.href('ht tp://www.laltrarete. it/mipiace/corpo.php?autor e=aut');
return true
}
</script>
seleziona gli articoli per autore:
<select name="autore" onsubmit="selAu t()" target="corpo">
But the browser try to open 'MENU.php?autor e=aut'
instead of
CORPO.php?.....
as i'd like.
I tried even with
window.open('ht tp://www.laltrarete. it/mipiace/corpo.php?autor e=aut',
'corpo');
but i got the same problem
Any suggestion?
thanks in advance
and sorry for my bad english
Marcello
Comment