Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
When you set up the form, you should have a hidden field that populates a field -- stored on the lead record -- from the appropriate query param, for example 'utm_source'. Hidden fields always have that option built-in.Then create a Smart List of people who've filled out the form you want, right-cl...
Couldn't be easier:form.onSuccess(function(vals,thankYouURL){ switch(document.location.pathname) { // or whatever you want to use to detect current page case '/mightyfine.html': document.location = '/thanks-mightyfine.html'; break; case '/redredwine.html': documen...
Lindsay, FYI, our upcoming FormsPlus library will allow prefill on non-Marketo pages. If you're interested in joining a Beta, contact me at https://purechat.me/sanford.P.S. I never bought the security concerns explanation. It's more likely that your external website is running SSL than your Mkto L...
I test Forms 2.0 forms in IE 8 all the time. What's an example URL where you're having problems?
Well, what do you think that payload format is? It isn't proper JSON because the values aren't quoted, and it certainly isn't proper WWW-Form-URL-Encoded (FUE). It looks like a regular JavaScript object. I don't recommend that transport format unless you know what you're doing and why.I would reco...
It's a myth that cookies get crossed with a referral form. You just have to know how to manage cookies and understand how Forms and Munchkin interact. Using a webhook should be a last resort -- not because of the webhook itself but because you're presumably using API calls from the webhook back into...
You can change everything. I actually have a far more advanced demo discussed and linked here.
Munchkin will track clicks on non-Marketo pages without modification. There are some links (such as document.location changes only in JS) that it can't hook automatically, but a regular will be fine.And whether the asset is in Marketo or not doesn't matter in this situation.
Yes, there are many reasons why the email may have bounced -- and some of those reasons may not indicate that the lead was a bad guy.For example, if the lead's email and/or DNS servers are down when the confirmation email goes out, that wasn't a legit lead's intent. But real-time validation of the ...
Is the field value you want to tokenize a field on the form itself? In that case you can do something like this in the form's onSuccess:form.onSuccess(function(vals,thankYouURL){ document.location = thankYouURL + '&Size=' + vals.size; return false;});