Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
We did a large form export (3000+ forms) from a Marketo instance recently, in preparation for migrating to a new instance, and were alarmed to see how many forms used extremely specific selectors in their Custom CSS:/* Add your custom CSS below */#mktoForm_1234 input { border: 2px solid pink;} Of c...
Well, Snippets have an HTML editor. So insert it the same way you’d insert it into an HTML section on an LP.
@Anna_Blanchet1 sure, why not?
Can you highlight your code with the syntax highlighter, please?
onFormRender won't matter (do not make that change). It's already set to run on every render. But it only checks the dropdown list once for performance reasons. I added the option to ignore if the dropdown was already populated. Set options.renderOnlyOnce to false to have it render every time.
@Arjun_NS I don’t understand the question?
⚠️ This code does not work in any version of Internet Explorer, as it relies on NodeList#forEach. It could be adapted for IE with a few more lines of JS.You probably know that email addresses are teeeeeechnically case-sensitive but, like most sensible creatures, you treat them as if they’re case-in...
📣 This note from 2018 was moved from another section to be referenced in an upcoming post.This one's good for getting your know-it-all on.Despite it being commonplace to “fix up” email addresses by lowercasing them — or, in financial/government contexts, uppercasing them — email addresses are clea...
⚠️ This code does not work in any version of Internet Explorer, as it relies on URLSearchParams and Custom Elements v1. An earlier post showed how to append form field values to the Thank You URL’s query string, but admittedly hand-waved how you would output query params on that next page. Indeed,...