Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Well, can't say much more unless I know the actual domain. What is it?
What is the landing page domain in question?
Yes, you could use a supplementary Visit Web Page call like this. I tend to use Click Link to trigger Interesting Moments because that way users can always trust that Visit Web Page signified a real page view, while Click Link becomes more loosely defined..
I'm not sure what satisfaction you expect to get from the code above. You'll get success when Munchkin.js is loaded, but you still won't get a callback when the tracking is complete.It is nice to know if Munchkin.js doesn't load, but that's not the tracking code. Munchin.init calls() View Web Page ...
@Ingrid if you can't get what you want out of the built-in Visits Web Page trigger, you can trigger a Munchkin Clicked Link event when they're on one of your interesting pages. For example (off the top of my head): if ( document.location.href.search(/infographic[^s]/i) !== -1 ){ Munchkin.munchkin...
@Becky B I second @Jenn that Marketo doesn't support expiring links.I would add that creating literal ONE-time downloads isn't a good practice. With the amount of mobile traffic now you are guaranteed to have people who click the link but never actually get the file, and then they're out of luck. T...
@Jeff Coveney In the thread @Justin Norris linked to, consider my comment about using a client-side form post to Marketo using the same data you gather in your non-Marketo form. Unless you are altering data on your server, there may not be any reason to do server-side anything. You can use a total...
Like so:MktoForms2.loadForm("//app-zz01.marketo.com", "AAA-BBB-CCC", 96, function(form) { form.addHiddenFields({ 'Last_filled_out_form_on_page' : document.location.href }) });
@Michael C Do you want the full URL to become one of your fields?That is, the Lead's `Last_filled_out_form_on_page` field gets set to "http://www.example.com/page1"?The page on which a user fills out a form is already usable in triggers (as @Josh mentioned). If you wanted to save it to the Lead re...
@Malik Z I'd recommend that you add something like JavaScript wrapper that I posted. I'll point it out to our own web team as well. Even better, wrap it in a function called something like reportStolenHTML(){}. I think 99% of copycats would delete that entire section if they saw that.