Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Just for clarity. Here is what I mean. On this example the field name is partnerid but the value on the URL has been set/expected to be PMID.
Darren,I am not sure what your question means. However, if what you are asking is how to capture a value from the URL and into a hidden field. You just need to make sure that you set the configuration of the field to the value you intend to use on the URL.For example, if your hiden field's name is l...
Scratch my last comment, I just realized that you were working on 2.0 forms. Good to know. The other thing that could be done is to reset any form regardless of which class they are using. Since in most cases, there would be only one form, that should take care of both cases.i.e.$jQ("form")...
Hey Adam, I am curious about one thing. That would not work in my case because my forms never make use of that class. Mine consistently use lpeRegForm instead. Are you using the original form editor or version 2?
No problem Adam. Any time.BTW... this is how I do it with the URL parameter (if the URL has userId=guest): if(Mkto.getUrlParam("userId") == "guest"){ $jQ("#_mkt_trk").val(''); mktoPreFillFields = {}; $jQ(".lpeRegForm")[0].reset(); document.cookie = '_mkto_trk=NULL; ex...
This is what I do to make the "Clear" button reset the visitor properly // Use jQuery via $jQ(...) var $jQ = jQuery.noConflict(); $jQ(document).ready(function(){ // If Clear is clicked remove Marketo cookies, prefill, etc. $jQ( "#mktFrmReset" ).click(function() { $jQ("#_mkt_trk").val(''); ...
Hmm. Sounds like a plan. Did you try it?
I just realized that there is indeed a way to do what you want using native Forms 2.0 designer features.The option is there on the field editor. Do exactly what you did for the Events option and play with different values on the "field width" and it will look exactly how you want it. Like this:I als...
Sandy,I actually have a suggestion. Why don't you remove the Yes label and only leave the checkbox there. Since each checkbox would be on the same line as the Descriptive label, it seems to me like it would be obvious to the user that the checkbox is for that line/subscription. Makes sense?It would ...