18 lines
172 B
JavaScript
18 lines
172 B
JavaScript
/*
|
|
* autocomplete-customer.js
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
|
|
|
|
$(function() {
|
|
|
|
$("#customerName").autocomplete({
|
|
|
|
source: "/customers/completeCustomer",
|
|
minLength: 1
|
|
});
|
|
|
|
}); |