Flipbook

Subscribe to our newsletter and stay informed about new books, upcoming titles and special offers. As a reward, you’ll get a 10% discount on your next purchase.

By submitting you agree to our privacy policy.

(function($) {
$(document).ready( function() {
$(‘.av-checkbox.gdpr’).each( function() {
var $cbox = $(this);
// disable form’s submit button by default
var $submit = $(‘input[type=submit]’, $cbox.parents(‘form’)).prop(‘disabled’, true);
$cbox.on(‘change’, function() {
$submit.prop(‘disabled’, !this.checked);
});
});
});
})(jQuery);