up vote 6 down vote favorite
share [g+] share [fb]

Is it possible to detect the HTTP request method (e.g. GET or POST) of a page from JavaScript? If so, how?

link|improve this question

feedback

5 Answers

up vote 7 down vote accepted

In a word - No

link|improve this answer
feedback

I don't believe so. If you need this information, I suggest including a <meta> element generated on the server that you can check with JavaScript.

For example, with PHP:

<meta id="request-method" name="request-method" content="<?php echo($_SERVER['REQUEST_METHOD']); ?>">
<script type="text/javascript">
    alert(document.getElementById("request-method").content);
</script>
link|improve this answer
feedback

You cant do this for a normal post/get however you can get to this info if you use an xmlhttp call and use the getResponseHeader

link|improve this answer
feedback

If you need this functionality, have the server detect what method was used and then modify something in the DOM that you can then read out later.

link|improve this answer
feedback

You can check the page's referrer:

document.referrer == document.URL

If it's the same page it's quite likely that the user submitted the form.

Of course this requires

  • that you don't link from a page to itself (which is required for accessibility anyway)
  • that the form is submitted to the very same page it's on
  • that the user did not disable the referrer
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.