tags:

views:

67

answers:

3

I just want a java script program to handle http post request

A: 

You can use it to send one, but not do much to very much to really handle it.
Maybe there is some solution to what you want to do if you explain more what you are after.

npup
+1  A: 

jQuery's AJAX support lets you submit HTTP POSTs from a web page.

Marcelo Cantos
A: 

Generally, java script is not used outside of the browser and a browser can not serve up HTTP requests, it can only issue and respond to them.

John Leidegren