cmc-sales/webroot/js/search.js

36 lines
394 B
JavaScript
Raw Normal View History

2010-05-10 22:02:11 -07:00
/*
* file: search.js
* Powers AJAX search of records in the CMC Sales System.
*
*
*/
$(function() {
$("#searchButton").button().click(function() {
doSearch();
return false;
});
});
function doSearch() {
$.post("/enquiries/doSearch", $("#searchString").serialize(), function(data) {
$("#results").html(data);
});
}