send data to server without ajax
Posted
by
PramodD
on Stack Overflow
See other posts from Stack Overflow
or by PramodD
Published on 2012-07-08T08:14:17Z
Indexed on
2012/07/08
9:15 UTC
Read the original article
Hit count: 211
Hi I want to send data to server in post method. I know it is simple question but I didn't get well document for this. I had method which sends data to server but it is using ajax. I want to send data without ajax how to do that? Here is my code.
$.ajax({
type: "POST",
contentType:"application/x-www-form-urlencoded; charset=UTF-8",
url: clientDetailURL,
data: finalclientDetailParam
}).done(function( msg1 )
{
var clientDetailResponse = msg1;
console.log("Client detail response is:"+clientDetailResponse);
});
© Stack Overflow or respective owner