vote up 4 vote down star

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

flag

4 Answers

vote up 3 vote down check

In a word - No

link|flag
vote up 2 vote down

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|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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