Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Form Elements

Hi, I am trying to retrieve the values of my form once it has been submitted and post it to a third party. I have my key but I'm not sure how to get my value from the form into the value part of my code. Please help. This is my code...

$('form').submit(function(evt) {

    var postData = {
        "name": "",
        "surname":"",
        "cell_no":"",
        "province":"",
        "vehicle_type":"",
        "year_model":"",
        "have_smartphone":"",
    };
    $.ajax({
        url : 'THIRD PARTY URL',
        headers: { "Content-Type":"application/json","Accept": "application/json", "X-APIKEY":"28V01143T5QL7il0W1748Pi7tlP3bMMB"},
        xhrFields: {withCredentials: false },
        type : 'POST',
        data: JSON.stringify(postData),
        contentType: "application/json",
        success : function (data) {
          console.log(data);
        },
        error : function (data, errorThrown) {
          console.log(data);
        }
    });
  });