Bonjour,
J'ai un petit pb sur lequel je bute : j'ai un formulaire, et je veux que lors du submit, les paramètres soient passés à un popup. Le code suivant marche, sauf que ma fenêtre appelante devient blanche avec [object] à l'intérieur. Quelqu'un peut m'aider svp ? Merci bcp.
<html>
<head>
<SCRIPT LANGUAGE = "JavaScript">
function DivSearchSubmit()
{
document.forms["formSearch"].action = "javascript:window.open('http://www.toto.fr/toto.asp?language=FR&Action="+document.forms["formSearch"].Action.value+"&ville="+document.forms["formSearch"].ville.value+"&rayon="+document.forms["formSearch"].rayon.value+"','','scrollbars=yes,resizable=yes,width=420, height=450,status=yes,menubar=no';";
document.forms["formSearch"].submit();
}
</SCRIPT>
</head>
<body>yo<br>
<form method="post" name="formSearch" action="javascript:DivSearchSubmit()">
<input type="hidden" name="Action" value="FindCity">
<input type="text" name="ville" value="bordeaux" size="20" maxlength="40">
<input type="hidden" name="rayon" value="5">
<br>
<input type="submit" name="Submit" value="Rechercher">
</form>
</body>
</html>