Hello all
I Have a problem with postvars + ajax + firefox (note: no ajax post request)
I have a form which I refresh it via ajax, but when i submit the form, firefox can't read the POST variables (form fields values)
in IE is working just fine
code structure:
----------------------------------------------------------
if ($_POST['SUBMIT_FORM'] == "YES") {
$value_1 = $_POST['value1']; //empty in firefox
$value_2 = $_POST['value2']; //empty in firefox
}
<form name="MyForm">
<div id="RefreshArea">
<input type="text" id="value1" name="value1" />
<input type="text" id="value2" name="value2" />
<input type="submit" value="Submit Form" />
</div>
<input type="hidden" id="SUBMIT_FORM" name="SUBMIT_FORM" value="YES" />
</form>
-------------------------------------------------------------
when i change via ajax the 2 fields in "RefreshArea" block and submit the form, the 2 posted values are empty (using firefox)
i tried to fix the problem by moving the whole form in div tag in order to refresh it via ajax but steal nothing....
Can anyone help please
Thanks in advance
So i need help
Moderator: General Moderators
- Christopher
- Site Administrator
- Posts: 13596
- Joined: Wed Aug 25, 2004 7:54 pm
- Location: New York, NY, US
Re: So i need help
Usually IE is wrong and Firefox is right, so something else is going on. Maybe try:
Code: Select all
<form name="MyForm" method="post">(#10850)