Hi Ben,
The problem remains still the same. it has stopped working now.
http://pages.ciphercloud.com/Subscription-Management_Subscription-Management-final.htmlCan anyone from marketo developers community can chime into this discussion box.
I used the below logic but sometimes it gets failed and sometimes it is not:
$(document).ready(function() {
$('#Unsubscribed').on('click', function() {
alert("unsub");
$('#Event_invitation__c, #Webinar_invitation__c, #Product_updates__c, #Newsletters__c, #Thought_Leadership_Emails__c').each(function() { //loop through each checkbox
$(this).removeAttr('checked');
})
});
$('#Event_invitation__c, #Webinar_invitation__c, #Product_updates__c, #Newsletters__c, #Thought_Leadership_Emails__c').on('click', function()
{
alert("sub");
$('#Unsubscribed').removeAttr('checked');
});
});
Thanks