Original External Referrer URL Javascript
I'm trying to add Javascript that pulls Original External Referrer Url into a hidden form field. This is the Javascript that I will be using (from this discussion):
- <script>
- MktoForms2.whenReady(function(form){
- form.setValues({
- OriginalExternalReferrer : document.referrer
- });
- });
- </script>
Do I need to place this script on the landing page or in the form somewhere? If on the form, where do I place this?

