| DIR: /tmp/ |
| Current File : //tmp/phpD76oHy |
home/islapiiu/sites/forbes/control-panel/js/add-new-brand.js 0000644 00000001464 15076741577 0020104 0 ustar 00 $(document).ready(function () {
$("#category").change(function () {
var category = this.value;
$('#subCategory').empty();
$.ajax({
url: "post-and-get/ajax/add-new-brand.php",
type: "POST",
data: {
category: category,
actiongetSUB: 'GETSUBCATEGORY'
},
dataType: "JSON",
success: function (jsonStr) {
var html = '<option value=""> -- Sub Category -- </option>';
$.each(jsonStr, function (key, data) {
html += '<option value="' + data.id + '">' + data.name + '</option>';
});
$('#subCategory').append(html);
}
});
});
}); |