This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ISPICKVAL(Lead_Contact_Status__c, "TQL") | |
&& | |
OR ( | |
ISPICKVAL( Budget__c,"" ), | |
ISPICKVAL( Need__c,"" ), | |
ISPICKVAL( Authority__c,"" ), | |
ISPICKVAL( Timing__c,"" ) | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript" language="javascript"> | |
//uses standard Marketo jQuery variable; if you have defined another variable, use it for "$jQ" instead. | |
$jQ(document).ready(function(){ | |
$jQ('.lpeRegForm').attr('target','_top'); | |
}); | |
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script>document.write(new Date().getFullYear())</script> | |
<!-- Example Code --> | |
<span>© 2000–<script>document.write(new Date().getFullYear())</script> Your Company Name</span> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$jQuery(document).ready(function(){ | |
$jQ('.lpeRegForm').attr('target','_top'); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
var $jQ = jQuery.noConflict(); | |
$jQ(document).ready(function(){ | |
//This code shows a field with ID = "State" when the value of field ID = "Country" is "Australia". | |
//Add this code to an HTML block on the landing page. | |
// Put the ID of the dynamic field here | |
var stateRow = $jQ("#State").parents("li:first"); | |
var stateField = $jQ("#State"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
// Add this code in a "HTML" block in the Marketo Landing Page Editor. | |
// Use jQuery.noConflict just in case. | |
if ( typeof $jQ == 'undefined' ) { var $jQ = jQuery.noConflict(); } | |
// Declare your Submit Button Text; example: .val('Register for Webinar') | |
$jQ(document).ready(function() { | |
$jQ('#mktFrmSubmit').val('... your text here...'); | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//* Do NOT include the opening php tag | |
// Add support for 4-column footer widgets | |
add_theme_support( 'genesis-footer-widgets', 4 ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
if ( typeof $jQ == 'undefined' ) { var $jQ = jQuery.noConflict(); } | |
$jQ(document).ready(function() { | |
$jQ('a').attr('rel', 'nofollow'); | |
}) | |
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
// Add this code in a "HTML" block in the Marketo Landing Page Editor. | |
// Use jQuery.noConflict just in case. | |
if ( typeof $jQ == 'undefined' ) { var $jQ = jQuery.noConflict(); } | |
//Replace 'Register with:" with your desired text. | |
$jQ(document).ready(function() { | |
$jQ('.cf_sign_on_caption').html('Register with:'); | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Add the ID of your Marketo Form | |
$('#mktForm_1030').attr('onSubmit','return validate_form ( );'); | |
//Add the "name" properties of your form and field. i.e. mktForm_1030, CustomField_Terms_of_Service) | |
function validate_form ( ) | |
{ | |
valid = true; |
OlderNewer