Error with Ajax

Error with Ajax

Here is my code, I do not get a alert when it's done and no errors in developer screen.

How can I work out what is wrong?

  1. $.ajax({
  2. method: "POST",
  3. url: "scripts/distance-calculator.php",
  4. dataType: "json",
  5. data: { Dep: Dep, Arr: Arr, ACID: ACID, DOW: DOW, DepTime: DepTime }
  6. })
  7. .done(function( result ) {
  8. alert('aa');
  9.                        });