I have two forms embedded in a Joomla page. When submitting one and the page refreshes, the autofilling of the second form takes the data from the submitted form and fills it out. Also the email address fields show errors HTML code and "the email address is protected from spambots"
Using ajax submit causes everything to work fine.
Thanks,
Brent
Ajax submission doesn't replace the "Display Message" from the onload event, it just replaces the form.
Thanks,
Brent
You can solve this problem by making sure that the fields names are different in both forms!
Regards,
Max
example:
on load:
Display Message
Form
on submit:
Display Message
and the result after ajax submission shows on the page
onload. Display Message
onsubmit.Display Message
onload
1. Display Message
2. Form
onsubmit
1. Display Message
Regards,
Max
