This is the message in Firefox:
<form onsubmit="BixFormUpdate()"
action="http://www.argiletumtour.it/index.php?option=com_chronocontact&t
ask=send&chronoformname=newmio&Itemid=1" method="post"
id="ChronoContact_newmio" name="ChronoContact_newmio"
target="bix_vmc_target">
<input type="hidden" name="formkey" id="hidden_0"
value="newmio|4c037142f06f5">(the name of form is "newmio")
<div class="form_item">
<div
class="form_element cf_datetimepicker">
<label style="width: 150px;" class="cf_label">Arrive</label>
<input type="text" name="date_1"
id="date_1" size="20" title="" class="cf_datetime required dashboard
LV_valid_field" readonly=""><span class=" LV_validation_message LV_valid">
</span>
<button type="button" class="dashboard"></button></div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_datetimepicker">
<label style="width: 150px;"
class="cf_label">Departure</label>
<input type="text" name="date_2"
id="date_2" size="20" title="" class="cf_datetime required dashboard
LV_valid_field" readonly=""><span class=" LV_validation_message LV_valid">
</span>
<button type="button" class="dashboard"></button></div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div
class="form_element cf_button">
<input type="submit" name="button_3"
value="Submit"><input type="reset" value="Reset" name="reset">
</div>
<div class="cfclear"> </div>
</div> <input type="hidden"
value="1" name="910afe8f9851d8629d2dab8651dc6072"> <input type="hidden" value="11e333cc049315f2e36a2c60836f8c4e" name="1cf1">
</form>
In IE debug:
Form passed first SPAM check OK
Form passed the submissions limit (if enabled) OK
Form passed the Image verification (if enabled) OK
Form passed the server side validation (if enabled) OK
$_POST Array: Array ( [formkey] => [date_1] => 02/05/2010 [date_2] => 09/05/2010 [button_3] => Submit [e7831e317f6bf9129fcd132c72bc5ac5] => 1 [1cf1] => d8b05d470a59eb0ba44f25361b468511 [chronoformname] => newmio )
$_FILES Array: Array ( )
Form passed the plugins step (if enabled) OK
Debug End
Redirect link set, click to test:
index.php?option=com_chronocontact&chronoformname=bix_ajax_return&tmpl=component
Hel me, please
Tommasin
I don't see an error message in FireFox or in IE. The form appears to be behaving as you have designed it.
You do have an onSubmit script that doesn't appear to be defined; and your redirect URL goes to an Ajax page that is correctly returning a JSON response. It's not terribly useful but seems to work OK.
Bob
This appears to be because your AJAX call is trying to load a CSS file that can't be found. I'm not certain that this is the problem as the whole AJAX setup seems a bit strange.
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /css/template.css was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>
Bob