// populate the calculator $.getJSON('//ssd.dept.shef.ac.uk/fees/pgt/api/form.php?callback=?&course=') .done(function(data){ $('#feeLookupForm').html(data); }); // handle the form submission $("form#feeLookupForm").submit(function() { var mydata = $("form#feeLookupForm").serialize(); //alert(mydata); // it's only for test $.ajax({ type: "GET", url: "//ssd.dept.shef.ac.uk/fees/pgt/api/lookup.php", data: mydata, success: function(response, textStatus, xhr) { //alert("Data Loaded: " + response); $('#feeLookupResults').html(response); }, }); return false; });