Last active
December 15, 2015 22:39
-
-
Save longjasonm/5334717 to your computer and use it in GitHub Desktop.
Change Submit Button text on a Marketo Landing Page Form
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...'); | |
}) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you to Eric Hollebone for providing the basis for this code.