If you want to be regularly informed about my work in the European Parliament, you can subscribe to my newsletter here:
Topic:
Topic:
var d = new Date();
var day = d.getDate();
var month = d.getMonth() + 1;
var year = d.getFullYear();
jQuery(document).ready(function() {
jQuery('#mce-CONSENT-day').val(day);
jQuery('#mce-CONSENT-month').val(month);
jQuery('#mce-CONSENT-year').val(year);
jQuery('.js-newsletter-level').change(function() {
if(jQuery(this).is(':checked')) {
jQuery('#checkbox_fachlevel_offentlichkeit').attr("checked", false);
} else {
jQuery('#checkbox_fachlevel_offentlichkeit').attr("checked", true);
}
});
});