Author
make a POST request upon hyperlink click?
anarkali perera
Ranch Hand
Joined: Sep 10, 2009
Posts: 237
is there any way to make a POST request when a user clicks the hyperlink in some HTML page?
Muthukrishnan Manoharan
Ranch Hand
Joined: Aug 27, 2008
Posts: 90
posted Nov 17, 2009 22:49:00
0
Did you try for the onclick even of the hyperlink..
anarkali perera
Ranch Hand
Joined: Sep 10, 2009
Posts: 237
I need POST request.
Muthukrishnan Manoharan
Ranch Hand
Joined: Aug 27, 2008
Posts: 90
posted Nov 18, 2009 01:42:14
0
As far as my understanding, it all depends on the method you give in form tag..
So when you use onclick="document.someForm.submit();" for a hyperlink, it will submit the form using the method specified in the form tag..
anarkali perera
Ranch Hand
Joined: Sep 10, 2009
Posts: 237
can you give me a example?
Muthukrishnan Manoharan
Ranch Hand
Joined: Aug 27, 2008
Posts: 90
posted Nov 18, 2009 05:16:02
0
Here is an example
subject: make a POST request upon hyperlink click?