Ich habe ein Formular:
<form name="suche" method="get" action="">...</form>Innerhalb des forms einen SubmitButton:
<input type="image" src="mat/suchen_4.gif" alt="" name="detailSearch" onClick="setFormAction('detailSearch');">
Wenn dies innerhalb des formulares ist könntest du mit this arbeiten:
<input type="image" src="mat/suchen_4.gif" alt="" name="detailSearch" onClick="setFormAction(this.form, 'detailSearch');">
function setFormAction(type)
function setFormAction(form, type)
{
var form = window.document.forms["suche"];
und das rausschmeissen.
Aber im Prinzip würde ich das ganze Serverseitig lösen, so machst du das Formular für manche unbenutzbar.
Struppi.