0

Given following page test.html doing a form submit to another page post.html:

    <form action="post.html" method="POST">
        <input type="hidden" name="t1" value="qwerty"/>
        <input type="submit"/>
    </form>

Is it possible using JavaScript or jQuery in post.html to read value of t1.

Mustafa Temiz
  • 326
  • 1
  • 4
  • 19

1 Answers1

0

Server side handles POST data.

And javascript is client side. so, it is not possible by javascript

Md. Nasir Uddin Bhuiyan
  • 1,598
  • 1
  • 14
  • 24