personal_area_php/frontend/web/js/company_select.js

9 lines
323 B
JavaScript
Raw Normal View History

2024-05-24 15:27:07 +03:00
$(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)
});
})
})