$(document).ready(function() { $('.filter-category').on('click', function (){ $('.filter-category').prop('checked', false); $(this).prop('checked', true); let url_category = $(this).data('url'); window.location.href = url_category; }); });