machinevalidate.js 500 B

123456789101112131415161718192021
  1. $(document).ready(function() {
  2. $("#machine").change(function() {
  3. var machine = $("#machine").val();
  4. var calendar = $("#calendar").val();
  5. var dateget = $("#dateget").val();
  6. $.ajax({
  7. type: 'POST',
  8. url: 'machinedesc.php',
  9. data: {calendar:calendar, machine:machine, dateget:dateget},
  10. success: function (msg) {
  11. $('#message').html(msg);
  12. }
  13. });
  14. });
  15. });