Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a form which calls a javascript function. This function will only works when called from a certain page on my site (homepage). I am looking to put the form in the header of my website so that it can be populated from other pages, redirect to the homepage and then call the onsubmit function. Is there a way that I can accomplish this?

My html that I am using for the form at the moment is -

<form action="#" onSubmit="runRoute();return false;" id="routeForm">
        <input type="text" id="routeDistance" value="" placeholder="1" />
        <select id="routeUnit">
          <option value="miles">miles</option>
          <option value="Km">km</option>
        </select> 
        <input type="text" id="routeStart" value="" placeholder="postcode or location" />
        <input type="submit" value="plan my route" class="submit" />
    </form>

Thanks.

share|improve this question
It doesn't really make a lot of sense ... the only way to "redirect" from the browser is to make a trip back to the server, so if you're doing that, and passing along the form parameters, why not just process the form in that transaction? – Pointy Jun 10 '12 at 17:43
You can't have the form redirect then submit. A redirect will cause the state to be lost. – Oded Jun 10 '12 at 17:43
Perhaps you could have the form and its JavaScript function isolated in a single page which you could then embed in an iframe. Or, if you're using PHP, just use the require function. – Will Jun 10 '12 at 17:44
Thanks for the tips, I'll see what I can come up with. – Tom Jun 10 '12 at 17:47

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.