My question is why not just iFrame in a Marketo LP? My company recently acquired another company that wants to maintain their website but incorporate Marketo. We were able to do this pretty easily by creating a landing page template that's basically just a form. They iFrame this into their landing page template and we get full info if it's a known lead in Marketo.
We've been testing this on different browsers and it's working nicely so far. What's the disadvantage of this method?
I think the disadvantage might be conversion rate of the page the form sits on. But not sure, I may need to test this out. If it is iFramed in the web page then that might actually not be an issue but I am just not sure, you should check that out.
One main concern is usually responsiveness. Did you test it on different devices and window sizes, not just different browsers?
In Robb,
In addition to Kristen's point:
-Greg
I pass URL parameters from the parent to the iFrame. document.referrer works fine.
Page display that we've tried is fine. No extra time.
Parameter code:
function getUrlParameter(sParams) {
var sRefURL=document.referrer;
var sParamString=sRefURL.split('?');
var sPageURL=sParamString[1];
var sURLVariables = sPageURL.split('&');
for (var i = 0; i < sURLVariables.length; i++)
{
var sParameterName = sURLVariables[i].split('=');
if (sParameterName[0].toLowerCase() == sParams.toLowerCase())
return sParameterName[1];
}
return ''
}
Hi Rob,
You are right, I forgot to say it was possible with JS as well as cookies, but cannot be done out of the box
With regards to speed, you may not notice, but search engines do.
-Greg
Great point about search engines!