Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following code, i use v similar code on many pages but on this particular page it simply doeasn't work in either ie or ff

here's the code:

<form action='/productView.html' method=post name=prod_form>
<a  href='javascript:;' onclick='document.forms['prod_form'].submit(); return false;' class='button101' style='margin-left:92px;'>".$button_text."</a>
<input type=hidden name=action value='".$button_text."'>
<input type=hidden name=PRid value=".$databack3[PRid].">
<INPUT type='hidden' name='cat_id' value=".$databack3[prodcatID].">
<INPUT type='hidden' name='for_user_id' value=".$for_user_id.">
<input type=hidden name=source value=".$source."></form>

However, if i change to normal button as below it works fine:

<form action='/productView.html' method=post name=prod_form>
<input type=submit name=action class=button99 value='".$button_text."' style='margin-left:85px;'
<input type=hidden name=PRid value=".$databack3[PRid].">
<INPUT type='hidden' name='cat_id' value=".$databack3[prodcatID].">
<INPUT type='hidden' name='for_user_id' value=".$for_user_id.">
<input type=hidden name=source value=".$source."></form>

Any ideas?

share|improve this question

5 Answers

up vote 3 down vote accepted

Here is your problem;

onclick='document.forms['prod_form'].submit(); return false;'

Use regular quotes for you HTML arguments and you´ll be fine.

As it seems you´re using PHP to create a string with your HTML you´d try this to escape the quotes;

onclick=\"document.forms['prod_form'].submit(); return false;\"
share|improve this answer
Outstanding, thank you – Darren Sweeney Jan 2 '12 at 7:41

Wrap the content of the onclick attribute in double-quotes (");

onclick="document.forms['prod_form'].submit(); return false;"

Just to be clear, it's not that attributes require double-quotes, but you can't have the same kind of quotes inside your outer quotes, unless you escape them.

For example:

  • OK: <a href="#" onclick="do('this');">bar</a>
  • OK: <a href="#" onclick='do("this");'>bar</a>
  • OK: <a href="#" onclick="do(\"this\");">bar</a>
  • OK: <a href="#" onclick='do(\'this\');'>bar</a>
  • Not OK: <a href="#" onclick='do('this');'>bar</a>
  • Not OK: <a href="#" onclick="do("this");">bar</a>
share|improve this answer

its not able to detect form name because that too is in single quotes.

<a  href='#' onclick='document.forms["prod_form"].submit(); return false;' 
           class='button101' style='margin-left:92px;'>".$button_text."</a>

fiddle : http://jsfiddle.net/QFe3L/

share|improve this answer
<b><form action='/productView.html' method=post name=prod_form> <a 
   href='javascript:;' onclick="document.forms['prod_form'].submit();
   return false;" class='button101'
   style='margin-left:92px;'>".$button_text."</a> <input type=hidden
   name=action value='".$button_text."'> <input type=hidden name=PRid
   value=".$databack3[PRid]."> <INPUT type='hidden' name='cat_id'
   value=".$databack3[prodcatID]."> <INPUT type='hidden'
   name='for_user_id' value=".$for_user_id."> <input type=hidden
   name=source value=".$source."></form>

   Hope it works

</b>
share|improve this answer

It is just because of using single quotes. Just change your

onclick='document.forms['prod_form'].submit(); return false;'

to

onclick="document.forms['prod_form'].submit(); return false;"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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