Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

91
Views
How can I send the id of an element as a name using POST request?

I've used application/x-www-form-urlencoded Since for application/x-www-form-urlencoded, the body of the HTTP message sent to the server is essentially one giant query string -- name/value pairs are separated by the ampersand (&), and names are separated from values by the equals symbol (=). An example of this would be: MyVariableOne=ValueOne&MyVariableTwo=ValueTwo but I want to send the id as a variable, not as a value. How can I send id as a variable? Following is my program: Thanks in Advance.

<HTML>
<head>
<script>
function fun1(element) {
    var xhttp = new XMLHttpRequest();
    xhttp.open("POST", "/prc", true);
    xhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");    
    xhttp.send(element.id);
    //alert("ID":element.id);
  }
</script>
</head>
<body>
<button type="button" onclick="fun1(this)" id="img1">IMAGE</button>
</body>
</html>

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You will have to create a FormData object, add your data to that object and send that object. Refer to this documentation.

var formData = new FormData();
formData.append("MyVariableOne", "ValueOne");
formData.append("id", 123456);

var xhttp = new XMLHttpRequest();
xhttp.open("POST", "/prc", true);
xhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");    
xhttp.send(formData);
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!