Nieuw lid |
|
Hey folks, ik heb een probleempje. Zie hier mijn script:
<script language="javascript">
function play(game,type)
{
document.myForm.id.value=game;
document.myForm.choice.value=type;
document.myForm.submit();
}
</script>
<a onclick="play('1','2')" href='#'>Klik</a>
<form method="post" name="myForm" action="wdgtournament.php?panel=yes">
<input type="hidden" name="id" value="" />
<input type="hidden" name="choice" value="" />
<input type="hidden" name="action" value="Accept match" />
</form>
<script language="javascript"> function play(game,type) { document.myForm.id.value=game; document.myForm.choice.value=type; document.myForm.submit(); } </script> <a onclick="play('1','2')" href='#'>Klik</a> <form method="post" name="myForm" action="wdgtournament.php?panel=yes"> <input type="hidden" name="id" value="" /> <input type="hidden" name="choice" value="" /> <input type="hidden" name="action" value="Accept match" /> </form>
Mijn probleem is dus dat als de functie aangeroepen wordt (door op de link te klikken) dat hij de form wel post, alleen de values niet verandert. Iemand enig idee?
Citaat: Rens edit:
Codetags gebruiken!
|