27-07-2009, 10:32 PM
c'est bon, je viens de le programmer (j'avais oublié () a submit sur mon ancien code, je pensait que target ne marchait pas... vive la doc -_-')
pour ceux qui veulent:
pour ceux qui veulent:
<script type="text/javascript">
function apercu()
{
document.form1.action = "sign.php";
document.form1.target = "Frame";
document.form1.submit();
}
function valider()
{
document.form1.action = "test.php";
document.form1.target = "_self";
document.form1.submit();
}
</script>
<input type="button" name="button" id="button" value="Apercu" onclick="apercu();"/>
<input type="button" name="button2" id="button2" value="Valider" onclick="valider();"/>