Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save PardotGists/dcfb4671ec4beb37de66 to your computer and use it in GitHub Desktop.
Save PardotGists/dcfb4671ec4beb37de66 to your computer and use it in GitHub Desktop.
Populate Hidden Field on Form with Name of Webpage
<script type="text/javascript">
var fieldId = "Custom_Field_ID";
var formUrl = "http://cname.company.com/12345/ABCDE";
var title = encodeURI(document.title);
document.write('<iframe width="100%" height="300" frameborder="0" style="border: 0;" src="' + formUrl);
document.write('?' + fieldId + '=' + title);
document.write('"></iframe>');
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment