PHP&javascript: ouvrir popup via un form ??
Fermé
sspacy
Messages postés
61
Date d'inscription
lundi 4 mars 2002
Statut
Membre
Dernière intervention
31 mai 2004
-
1 mai 2002 à 17:32
Unknown - 25 févr. 2010 à 10:27
Unknown - 25 févr. 2010 à 10:27
A voir également:
- PHP&javascript: ouvrir popup via un form ??
- Telecharger javascript - Télécharger - Langages
- Easy php - Télécharger - Divers Web & Internet
- Get_magic_quotes_gpc php 8 ✓ - Forum PHP
- Bouton php - Forum PHP
- Php?id=1 - Forum PHP
2 réponses
sspacy
Messages postés
61
Date d'inscription
lundi 4 mars 2002
Statut
Membre
Dernière intervention
31 mai 2004
1 mai 2002 à 22:55
1 mai 2002 à 22:55
Pleeaaasseee!!!!
.::Sspacy.Millevazion: that's my world::.
.::Sspacy.Millevazion: that's my world::.
function PopIt(the_form) {
my_form = eval(the_form)
winpopup = window.open('', 'popup', 'tesParamètres');
my_form.target = 'popup';
my_form.submit()
}
Code HTML :
<form method='post' action='taPage.php' name='Formulaire'>
...
<input type='button' onclick='PopIt(Formulaire);' value='Visualiser' />
</form>
my_form = eval(the_form)
winpopup = window.open('', 'popup', 'tesParamètres');
my_form.target = 'popup';
my_form.submit()
}
Code HTML :
<form method='post' action='taPage.php' name='Formulaire'>
...
<input type='button' onclick='PopIt(Formulaire);' value='Visualiser' />
</form>