In the jquery example the arguments are well identified; url and form parameters.
$.ajax({
url: "test.html",
}).done(function() {
// ...
});
I want to know if you have any way to hide the url in ajax or make it difficult to identify the destination to avoid being copied and pasted into the browser.
I see the js of other sites and apparently are pure javascript. Does this imply security in any way?