I'm trying to submit a form with javascript. Works fine with Firefox 3.6, but doesn't work in Firefox4.0 and IE8.

Code:

<table>  
     <tr>
     <td>  
     <form action='results.html' method='post' target='_blank' id='<% $question->{ QuestionID } %>'>  
     <input type='hidden' name='SurveyID' value='<% $surveyid %>'  
     <input type='hidden' name='responses' value='<% join ",", map { $_->{ srid } } @textresults %>'/>  
     <input type='hidden' name='question' value='<% $question->{ QuestionID } %>'/>  
Total Responses: (< a href='javascript: submitForm("<% $question->{ QuestionID } %>");' >View All< /a>)  
     </form>  
     </td>  
     </tr>  
</table>  

Javascript:

<script type='text/javascript'>  
function submitForm(id) {  
document.getElementById(id).submit();  
}  
</script>  

Any Idea what is wrong?

link|improve this question
1  
use backtick to give inline code, {} button to format code or use <code> tags or give enter and enter and 5 space before code – experimentX Apr 5 '11 at 6:20
did you copy/paste this code from your editor? – davogotland Apr 5 '11 at 6:21
By the way the final tr is malformed, it should be </tr> not </ tr>. – Christian Apr 5 '11 at 6:28
1  
javascript: URIs are deprecated for a long time. Please use onclick handlers. – ThiefMaster Apr 5 '11 at 6:30
Actually iam new to stackoverflow. Thanks for your valid information in formatting the code. – Sathyan A Apr 5 '11 at 6:40
show 1 more comment
feedback

3 Answers

up vote 1 down vote accepted

First of all close the first input tag like this: <input type='hidden' name='SurveyID' value='<% $surveyid %>'/>. Also remove the spaces from the a tag, here: <a href and here: </a>

link|improve this answer
1  
That depends on his doctype.. html5 doesn't require closed input tags. – lmondria Apr 5 '11 at 6:45
@Imondria Still there should be at least a > at the end of the tag – Rian Schmits Apr 5 '11 at 6:50
After adding the closing input tag It worked in Firefox 4.0 and IE8. Very very thanks. I have a question to u , How it worked in Firefox 3.6 with out that closing tag?? – Sathyan A Apr 5 '11 at 8:29
@Sathyan I guess Firefox 3.6 was more forgiving of unclosed tags – Rian Schmits Apr 5 '11 at 8:37
Thanks – Sathyan A Apr 5 '11 at 9:01
feedback

Formatted your code, Changed the JS to allow for dynamic usage (multiple instances of your form in same page), Suggest you put the script in the head of your page

<table>  
     <tr>
     <td>  
     <form action='results.html' method='post' target='_blank' id='<% $question->{ QuestionID } %>'>  
         <input type='hidden' name='SurveyID' value='<% $surveyid %>' />
         <input type='hidden' name='responses' value='<% join ",", map { $_->{ srid } } @textresults %>'/>  
         <input type='hidden' name='question' value='<% $question->{ QuestionID } %>' />  
         Total Responses: (<a href='javascript: submitForm(this);' >View All</a>)  
     </form>
     </td>
     </tr>
</table>  

Javascript (best to put this in the header of the page):

<script type='text/javascript'>  
function submitForm(elem) {  
    while(elem.tagName != "form") { elem = elem.parent; }
    elem.submit();
}  
</script>
link|improve this answer
1  
Might be a good one! – lmondria Apr 5 '11 at 6:48
Thanks for your help! – Sathyan A Apr 5 '11 at 8:32
feedback

What happens if you add a name property to the form and submit the form like this:

function submitForm(id) {  
  document.formname.submit();
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.