In the shopping cart I have a selectios (shippment method) and a check box (terms of service)
On both changes and AJAX request is fired.
Is it possible to disable the AJAX of the terms of service?
You can add the following JavaScript to your template.
(function($){
$(function() {
$('input[name="tos"][type="checkbox"]').off('change').on('change', function(e) {
e.preventDefault();
return false;
});
});
})(jQuery);
Thank - it works
You are welcome.