Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

Pure JavaScript Send POST NO JQUERY

const data = JSON.stringify({
  example_1: 123,
  example_2: 'Hello, world!',
});

fetch('example.php', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
  },
  body: data,
}).then(response => {
  if (response.ok) {
    response.text().then(response => {
      console.log(response);
    });
  }
});
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Pure #JavaScript #Send #POST #NO #JQUERY
ADD COMMENT
Topic
Name
2+7 =