Removed ID

This commit is contained in:
2017-03-22 12:47:08 -04:00
committed by GitHub
parent 0ee59704b3
commit fa37c98500

View File

@@ -1,9 +1,9 @@
$(function() {
$("select#issue_customer_id").on("change", function() {
$("select#issue_customer").on("change", function() {
$.ajax({
url: "/filter_vehicles_by_customer",
type: "GET",
data: { selected_customer: $("select#issue_customer_id").val() }
data: { selected_customer: $("select#issue_customer").val() }
});
});
});