Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Ok, thanks for confirming!Yeah, must have been a weird glitch in in the matrix. We re-created the fields and, sure enough, they were fine. Thanks!
Hi -We're trying to test out a connection integration to our Marketo Sandbox instance and we noticed that while creating the custom object we can only make two fields in Sandbox to be set to dedupe. We need to have 3 to test against the system, but it seems that our Sandbox instance is not allowing ...
Ahhhh, ok. So if I'm understanding correctly, all of this currently: Munchkin.munchkinFunction('clickLink', { href: linkId, utm_source: utm_source, utm_medium: utm_medium, utm_campaign: utm_campaign, utm_term: utm_term, utm_content: utm_content }); Won't work, but this will: M...
Can you elaborate on that a bit? From other posts I was reading, I thought it would be possible to do something like this (taken from this post) document.querySelector('#myButtonId').addEventListener('click', function(e){ Munchkin.munchkinFunction('clickLink', { /* ... click link options here... *...
Sorry about that. Here's the code that I've been testing: //TO SEND TO MARKETO// Function to read a cookie's value by namefunction getCookie(name) { var nameEQ = name + "="; var ca = document.cookie.split(';'); for(var i=0;i < ca.length;i++) { var c = ca[i]; while (c.charAt(0)==' ') c = c.s...
I've been working on trying to get UTM cookie values to send to Marketo when someone clicks a link.It's similar to this issue that was posted awhile ago. There are some situations where a user will navigate to a separate page and then drop the UTM's from the URL. So we are trying to capture those fr...