Advertisement
Advertisement
| 08.25.2008 at 08:58AM PDT, ID: 23675617 | Points: 500 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: |
$('trucks').observe('keyup', function loadLocations() {
var url = 'inc/findlocation.php';
var params = 'cust_id=' + $F('custid');
var ajax = new Ajax.Request(url,{method: 'get',parameters:params,
onSuccess: function(res){
var j = res.responseText.toJSON(), options = '';
for (var i = 0; i < j.length; i++) {
options += '<option value="' + j[i].optionValue + '">' + j[i].optionDisplay + '</option>';
}
$('pickup').update(options);
}
,onFailure:reportError});
});
function reportError() {
alert('Sorry. There was an error');
}
|