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 html:

<body>
<form action="site1">
    <input type="image" name="submit" border="0" src="images/front/search_travel.png" alt=""  onclick="provider_popup();"/>
</form>

<form  name="frmRight1"  action="site2" target="_blank" >
    <input type="hidden" name="sector_id" id="sector_id" value="90" />
    <input type="submit" style="visibility:hidden;" />
 </form>

 <script type="text/javascript">
 function provider_popup (){
        document.frmRight1.submit();
        return false;
  } 
</script>
</body>

And while I submit the button with name submit, I get one another tab and it will load 'site2'

But this process is not working in chrome.

Let me know the reason

share|improve this question

4 Answers

up vote 1 down vote accepted

Okay, you also needed to prevent the image button from submitting its form. Your function returned false, but you need to return that to the onclick, hence the problem. Do it like this:

onclick="return provider_popup();"

I recommend you ditch the <input type="image"> approach anyway, and use a pure element with an onclick attribute. Makes your HTML much simpler i.e.

<body>
    <img src="images/front/search_travel.png" alt="Submit" onclick="provider_popup();" />

    <form  name="frmRight1"  action="site2" target="_blank" >
        <input type="hidden" name="sector_id" id="sector_id" value="90" />
        <input type="submit" style="visibility:hidden;" />
    </form>

     <script type="text/javascript">
     function provider_popup () {
            document.forms['frmRight1'].submit();
      } 
    </script>
</body>

Another alternative is to wrap the image in an anchor <a href... and apply the onclick to that.

share|improve this answer
No,actuallly i need to submit the two forms ie first one and name="frmRight1" – Linto Jul 19 '11 at 22:34
Okay, see my final 3rd answer! – James McCormack Jul 19 '11 at 22:58
Had the problem, to submit the form with Firefox and Chrome. But after specifing the specific form by name, everything works fine. Thx – xandruCea Jul 12 '12 at 9:02

Replace

document.frmRight1.submit();

with

document.forms["frmRight1"].submit();
share|improve this answer
still, it not working – Linto Jul 19 '11 at 21:39

document.frmRight1 would only work in some browsers.

try

document.forms['frmRight1'] instead.

Alternatively give the form an id like <form id="frmRight1" name... and refer to it via document.getElementById('frmRight1').

See this for more info about properties of the document: http://www.w3schools.com/jsref/dom_obj_document.asp

share|improve this answer
still, it not working – Linto Jul 19 '11 at 21:51
See my other answer. – James McCormack Jul 19 '11 at 22:13

Okay, your need to submit both forms simultaneously wasn't clear. This was tricky. The only way I found to do it was to introduce a small wait time:

<script type="text/javascript">
function provider_popup (){
  document.forms['frmRight1'].submit();
  setTimeout("doPost()", 10);
  return false;
}

function doPost()
{
    document.forms[0].submit();
}  
</script>
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.