Hi guys,
i am new at chronoforms but i have a little problem.
The chronoforms javascript validation doesn't work and i don't know why... I think all looks ok :/
Here a are the settings:

I debug the form, but i can't find a mistake😟
Here are the debug result:
I changed the email to [email]XXXXX@XXX.XX[/email]🙂
I hope anybody can help me!
Thank you guys!
BTW: The homepage link:
http://team.hdcontent.de/index.php/de/unternehmen/kontakt
--- EDIT ---
Sorry, the formcode:
i am new at chronoforms but i have a little problem.
The chronoforms javascript validation doesn't work and i don't know why... I think all looks ok :/
Here a are the settings:

I debug the form, but i can't find a mistake😟
Here are the debug result:
1. Form passed first SPAM check OK
2. Form passed the submissions limit (if enabled) OK
3. Form passed the Image verification (if enabled) OK
4. Form passed the server side validation (if enabled) OK
5. $_POST Array: Array ( [Firma] => 123 [Funktion] => [Anrede] => Herr [Vorname] => [Name] => [Strasse] => [Postleitzahl] => [Ort] => [Fon] => [Fax] => [Mail] => [Nachricht] => [565a69206f1270156ef5bcf1fed07566] => 1 [1cf1] => 6e765f679b35e59553b920c4fd4669e4 [chronoformname] => Kontakt )
6. $_FILES Array: Array ( )
7. Form passed the plugins step (if enabled) OK
8. An email has been SENT successfully from () to XXXXX@XXX.XX
9. Debug End
I changed the email to [email]XXXXX@XXX.XX[/email]🙂
I hope anybody can help me!
Thank you guys!
BTW: The homepage link:
http://team.hdcontent.de/index.php/de/unternehmen/kontakt
--- EDIT ---
Sorry, the formcode:
<table>
<tr>
<td>Firma</td>
<td><input type="text" class="inputbox" name="Firma" id="Firma" title="Bitte Firma ausfüllen!" /> *</td>
</tr>
<tr>
<td>Funktion</td>
<td><input type="text" class="inputbox" name="Funktion" id="Funktion" title="Bitte Funktion ausfüllen!" /> *</td>
</tr>
<tr>
<td>Anrede</td>
<td>
<select class="inputbox" name="Anrede" id="Anrede">
<option id="AnredeHerr" value="Herr">Herr</option>
<option id="AnredeFrau" value="Frau">Frau</option>
</select>
</td>
</tr>
<tr>
<td>Vorname</td>
<td><input type="text" class="inputbox" name="Vorname" id="Vorname" title="Bitte Vorname ausfüllen!" /> *</td>
</tr>
<tr>
<td>Name</td>
<td><input type="text" class="inputbox" name="Name" id="Name" title="Bitte Name ausfüllen!" /> *</td>
</tr>
<tr>
<td>Straße</td>
<td><input type="text" class="inputbox" name="Strasse" id="Strasse" title="Bitte Straße ausfüllen!" /> *</td>
</tr>
<tr>
<td>Postleitzahl</td>
<td><input type="text" class="inputbox" name="Postleitzahl" id="Postleitzahl" title="Bitte Pstleitzahl ausfüllen!" /> *</td>
</tr>
<tr>
<td>Ort</td>
<td><input type="text" class="inputbox" name="Ort" id="Ort" title="Bitte Ort ausfüllen!" /> *</td>
</tr>
<tr>
<td>Fon</td>
<td><input type="text" class="inputbox" name="Fon" id="Fon" title="Bitte Fone ausfüllen!" /> *</td>
</tr>
<tr>
<td>Fax</td>
<td><input type="text" class="inputbox" name="Fax" id="Fax" /></td>
</tr>
<tr>
<td>Mail</td>
<td><input type="text" class="inputbox" name="Mail" id="Mail" title="Bitte Mail ausfüllen!" /> *</td>
</tr>
<tr>
<td>Ihre Nachricht</td>
<td><textarea class="inputbox" name="Nachricht" id="Nachricht" cols="16" rows="4"></textarea></td>
</tr>
<tr>
<td colspan="2">
<input type="submit" id="sumit" value="Abschicken">
<input type="reset" id="reset" value="Reset">
</td>
</tr>
<tr>
<td colspan="2" align="right"><font size="-2">* Eingabe erforderlich</font></td>
</tr>
</table>