Hi everybody I want to know is it possible to do this ?
First I use $.post
to post data to a href . when post done it will have data on it (this do not have href) and then i want to send another data on it but I don't know what is its href.
For example :
$.post("/link", {
"action" : "add_points_for_user",
"search_user" : "data",
"submit_search_user" :"Ok"
}, function(z) {
console.log(z);
// I want to send another data on it (use $.post) without using url
});