Skip to main content
February 18, 2009
Question

submitForm - no response in firefox

  • February 18, 2009
  • 2 replies
  • 316 views
I'm using Ajax.submitForm to submit a form to a page that does processing and returns a value. Works well in IE, but I'm getting a blank string in FireFox. I even tried dummy output in the processing page:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><title>Untitled</title></head>
<body>This is a f****** string right?</body></html>

But alas, my response is empty. I don't get it...again, this works just fine in IE.

Thanks in advance.
This topic has been closed for replies.

2 replies

Inspiring
February 18, 2009
make sure you have valid html/xhtml in your page.

for example, this:

<table ...>
<form ...>
...
</form>
</table>

will cause your problem.

Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/
BKBK
Community Expert
Community Expert
February 18, 2009
Could we see the form-submission code?