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
let template = ` | |
<script src="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js?autoload=true&skin=sunburst&lang=js" defer></script> | |
<!-- Your content goes here --> | |
<hr> | |
<h1>Raw JSON Response</h1> | |
<pre class="prettyprint">{{raw}}</pre> | |
</div> | |
` | |
pm.visualizer.set(template, { |
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"> | |
$.noConflict(); | |
jQuery(document).ready(function($) { | |
$('.mktoStartEndTime').css('color','#fff'); | |
$('.mktoRules a').css('color','#fff'); | |
}); | |
</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
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100" style="background-color:#FFFFFF; border:1px solid #CCCCCC;"> | |
<tr> | |
<td align="left" valign="top" style="padding:5px;"> | |
<table border="0" cellpadding="0" cellspacing="0" width="100%"> | |
<tr> | |
<td align="center" valign="top" style="background-color:#BB0000; color:#FFFFFF; font-family:Helvetica, Arial, sans-serif; font-size:14px; font-weight:bold; padding-top:5px; padding-bottom:5px; text-align:center;"> | |
January | |
</td> | |
</tr> | |
<tr> |
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; |
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
<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
<?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"> | |
// 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
<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"); |
NewerOlder