Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
@Mikal K Create a landing page to gather values, then use a JavaScript redirect to the malto:. However, be warned that mailto: links launched via regular web pages are not as functional as most people think they are. I've posted a couple of screencaps about this.If a user uses a webmail app as the...
You have great instincts! While there's nothing wrong with a separate multi-select and hidden string variable, that just makes more to manage. I would catch the onSubmit event and then change the value to the new, |-delimited single value. User never sees it, but it will be posted to the server l...
OK... but I did provide code that is dirt-simple to use on your site!
@Kyleen P You're really asking two questions in one:Can you upload binary files such as pictures to Marketo in a form post?Can you display such files within the Marketo user interface, if they are browser-compatible formats?The answer to 1. is actually "Yes." You can use the JS FileReader API in co...
But why would you care abo -- just kidding, great idea!
Overriding a few CSS styles to enable the float:.mktoForm { width: 960px;}.mktoForm style + .mktoFormRow { float: left;}.mktoForm style + .mktoFormRow + .mktoFormRow { clear: right;}Restyling forms means a significant CSS investment. You may want to look at my destyled embedded form examp...
You must still be leaving something out of the exact code. 🙂 Or you deleted the final .This is where you put return true; to tell Forms 2.0 to also redirect to the Thank You URL:function(form){ form.onSuccess(function(form){ _gaq.push('_trackEvent' , 'PDF' , 'Down...
Addreturn true;after the _gaq.push line.
Typo... "from" != "form"Also, you may have mismatched braces:MktoForms2.loadForm("//app-sj07.marketo.com", "801-TVW-591", 456, function(form){ form.onSuccess(function(form){ _gaq.push('_trackEvent' , 'PDF' , 'Downloaded' , 'PDF On HOw To Turn HR into a P...
A multiple-selection select will submit as an array (if more than one selection): fieldname[]=aaa&fieldname[]=bbbor as a single string if only one selection: fieldname=cccAre you talking about the way the values are represented within Marketo? That's not the same as the submit.