personal_area_php/frontend/web/js/company_select.js
2024-05-24 15:27:07 +03:00

9 lines
323 B
JavaScript

$(document).ready(function (){
$('#company_select').on("change", function(){
$.ajax({
url: "/product_category/product-category/get-category-select-by-company-id?company_id=" + $(this).val()
}).done(function(html) {
$('#category_select_container').html(html)
});
})
})