submit form via ajax on change of select field

  1. Yepkoo

    Automatic Ajax Submission with Input change

    <script> function changeinput() { $.ajax({ url : "url.php", type: "POST", data: $("#form_id").serialize() }).done(function(response){ if (response == "no") {...
  2. Yepkoo

    Input değişikliği ile Otomatik Ajax Gönderimi

    <script> function changeinput() { $.ajax({ url : "url.php", type: "POST", data: $("#form_id").serialize() }).done(function(response){ if (response == "no") {...
Top