Hi,
I have a problem with Form.request in IE
My Script :
function SubmitRequest(formId)
{
formId.request({
onComplete: function(transport){
alert("Saved");
}
});
return false;
}
My Html Code :
<form action="" onsubmit="return nbSubmitRequestFormProfil(this)"
method="post">
<table>
<tr><td class="label">Nom : </td><td
class="champs"> <input
type="text" name="first_name" value="test" id="first_name" size="30"/
></td></tr>
<tr><td class="label">Prénom : </td><td
class="champs"> <input
type="text" name="last_name" value="test" id="last_name" size="30"/></
td></tr>
<tr><td colspan="2">
<input type="submit" value="Enregistrer"
class="button_profil"/>
</td>
</tr>
</table></form>
All works fine under Firefox and Safari/konqueror, but fails under
IE8 , Do you have any idea about this ?
Thank's
--
You received this message because you are subscribed to the Google Groups
"Prototype & script.aculo.us" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/prototype-scriptaculous?hl=en.