Skip to content

Instantly share code, notes, and snippets.

@longjasonm
Last active December 15, 2015 22:39
Show Gist options
  • Save longjasonm/5334717 to your computer and use it in GitHub Desktop.
Save longjasonm/5334717 to your computer and use it in GitHub Desktop.
Change Submit Button text on a Marketo Landing Page Form
<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>
@longjasonm
Copy link
Author

Thank you to Eric Hollebone for providing the basis for this code.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment