Skip to content

Instantly share code, notes, and snippets.

@longjasonm
Created September 13, 2013 20:38
Show Gist options
  • Save longjasonm/6555757 to your computer and use it in GitHub Desktop.
Save longjasonm/6555757 to your computer and use it in GitHub Desktop.
Update the intro text on the Marketo Social Sign-In box.
<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:');
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment