$("#sendme").click(function(){
});
$.post("URL POST",
{
param1: "value1",
param2: "value2"
},
function(data, status){
});
});
- URL POST can be replaced with your URL post
- param1 and param2 are name of post data
- value1 and value2 are value of param that will be sent to URL POST
No comments:
Post a Comment