mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2025-11-08 08:54:23 -05:00
10 lines
262 B
JavaScript
10 lines
262 B
JavaScript
$(function() {
|
|
$("select#issue_customer").on("change", function() {
|
|
$.ajax({
|
|
url: "/filter_vehicles_by_customer",
|
|
type: "GET",
|
|
data: { selected_customer: $("select#issue_customer").val() }
|
|
});
|
|
});
|
|
});
|