jQuery(document).ready(function ($) {
function filterCities() {
var selectedCountry = $('#countrychecklist input:checked').val();
$('#citychecklist li').each(function () {
var cityParent = $(this).data('parent');
if (!selectedCountry || cityParent == selectedCountry) {
$(this).show();
} else {
$(this).hide();
$(this).find('input').prop('checked', false);
}
});
}
// عند تغيير الدولة
$('#countrychecklist input').on('change', function () {
filterCities();
});
// عند فتح الصفحة
filterCities();
});class="wp-singular page-template-default page page-id-38 wp-custom-logo wp-embed-responsive wp-theme-dashwall col-2cl full-width mobile-menu invert-dark-logo logged-out">
Skip to content