Unsubscribe all - check all options

Anonymous
Not applicable

Unsubscribe all - check all options

 I set up a new dynamic subscription management page with different options to unsubscribe from. Everything seems to be working properly, but i was just wondering if anyone knows the code to input so that when someone clicks "unsubscribe all" it will automatically check off every other option? Suggestions?
Tags (1)
2 REPLIES 2
Anonymous
Not applicable

Re: Unsubscribe all - check all options

I think this recorded webinar is what you're looking for. It shows how you can include multiple unsubscribe options with a "unsubscribe all" field that overrides the others:

https://community.marketo.com/MarketoArticle?id=kA050000000KyuKCAS


Anonymous
Not applicable

Re: Unsubscribe all - check all options

Kelly,

You're welcome to steal it from our Subscription Center here: http://revmarketer.pedowitzgroup.com/SubscriptionManagement.html

You'll need to customize it for your needs. Here is the code we used:

$jQ("#Unsubscribed").click(function() {
if ($jQ('#Unsubscribed:checked').val() != null) {
$jQ("input[name=Subscribed__c],input[name=Subscribed_Webinars__c],input[name=Revenue_Marketer_Series__c],input[name=Subscription-Suspendfor90Days]").attr("checked", false);
}