cmc-sales/webroot/js/autocomplete-customer.js

18 lines
172 B
JavaScript
Raw Normal View History

2010-02-18 21:38:43 -08:00
/*
* autocomplete-customer.js
*
*
*
*/
$(function() {
$("#customerName").autocomplete({
source: "/customers/completeCustomer",
minLength: 1
});
});