[Solved] form that sends an http request


Using Jquery

$.ajax({
url: "Your End Point",
context: document.body,
success: function(){
  'Whatever you need it to do'
}
});

Or make a HTTPRequest in JavaScript

3

solved form that sends an http request