<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: New Forms: How to fill hidden fields with JavaScript in Lead Capture Tools</title>
    <link>https://community.hubspot.com/t5/Lead-Capture-Tools/New-Forms-How-to-fill-hidden-fields-with-JavaScript/m-p/1129467#M12698</link>
    <description>&lt;P&gt;Your example refers to the legacy forms, not the new multi-step forms.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 30 Mar 2025 17:06:17 GMT</pubDate>
    <dc:creator>dash-flow-io</dc:creator>
    <dc:date>2025-03-30T17:06:17Z</dc:date>
    <item>
      <title>New Forms: How to fill hidden fields with JavaScript</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/New-Forms-How-to-fill-hidden-fields-with-JavaScript/m-p/1119942#M12594</link>
      <description>&lt;P&gt;&lt;U&gt;Huge pain point:&lt;/U&gt;&lt;BR /&gt;&lt;BR /&gt;The Legacy Forms allowed to inject javascript to for example update form values or write data to hidden fields for tracking or various other use cases.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt; &amp;lt;script&amp;gt;
   hbspt.forms.create({
     css: '',
     portalId: '{{portalId}}',
     formId: '{{formId}}',
     onFormReady: function($form) {
            $('input[name="stringtest"]').val("kitkat2").change();
     }
   });
 &amp;lt;/script&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The new forms use a pure iframe implementation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;script src="https://js-eu1.hsforms.net/forms/embed/12345.js" defer&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;div class="hs-form-frame" data-region="eu1" data-form-id="{{id}}" data-portal-id="{{portal}}"&amp;gt;&amp;lt;/div&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="5"&gt;How can this be done with the new forms?&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With&amp;nbsp;&lt;A href="https://developers.hubspot.com/docs/guides/api/marketing/forms/global-form-events#setfieldvalue" target="_blank" rel="noopener"&gt;global form events - set field value&lt;/A&gt;&amp;nbsp;one could set hidden fields, but it is unclear how to tell the iframe to execute this javascript.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 09 Mar 2025 21:03:17 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/New-Forms-How-to-fill-hidden-fields-with-JavaScript/m-p/1119942#M12594</guid>
      <dc:creator>dash-flow-io</dc:creator>
      <dc:date>2025-03-09T21:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: New Forms: How to fill hidden fields with JavaScript</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/New-Forms-How-to-fill-hidden-fields-with-JavaScript/m-p/1119951#M12595</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/893035"&gt;@dash-flow-io&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Recently I've seen forms int he wild &lt;STRONG&gt;removing&lt;/STRONG&gt; the iFrame, using a new implementation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I haven't been able to figure out when the changes happen.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To target a value in an iFrame this is what I used:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;&amp;lt;!--[if lte IE 8]&amp;gt;
    &amp;lt;script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/v2-legacy.js"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;![endif]--&amp;gt;
&amp;lt;script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/v2.js" defer&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script&amp;gt;
var change_me   = "123";
  
window.addEventListener('message', event =&amp;gt; {
  if(event.data.type === 'hsFormCallback' &amp;amp;&amp;amp; event.data.eventName === 'onFormReady') {
    document.getElementById("hs-form-iframe-0").contentDocument.querySelector('input[name="change_me"]').value = change_me;
  }
});
&amp;lt;/script&amp;gt;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But, as mentioned, I'm looking at changing this and using a new implementation (without the iFrame).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have fun&lt;/P&gt;
&lt;P&gt;Mike&lt;/P&gt;
&lt;P style="font-size: 0.8rem;"&gt;Here to learn more about HubSpot and share my HubSpot Knowledge. I'm the founder of &lt;A href="https://www.webalite.com?utm_campaign=community-forum&amp;amp;utm_source=community&amp;amp;utm_content=signature" target="_blank"&gt;Webalite&lt;/A&gt; a Gold HubSpot Partner Agency based in Wellington, New Zealand and the founder of &lt;STRONG&gt;Portal-iQ&lt;/STRONG&gt; the world's first automated &lt;A href="https://portal-iq.com?utm_campaign=community-forum&amp;amp;utm_source=community-forum&amp;amp;utm_content=signature" target="_blank"&gt;HubSpot Portal Audit&lt;/A&gt; that helps you work smarter with HubSpot.&lt;/P&gt;</description>
      <pubDate>Sun, 09 Mar 2025 22:01:43 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/New-Forms-How-to-fill-hidden-fields-with-JavaScript/m-p/1119951#M12595</guid>
      <dc:creator>Mike_Eastwood</dc:creator>
      <dc:date>2025-03-09T22:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: New Forms: How to fill hidden fields with JavaScript</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/New-Forms-How-to-fill-hidden-fields-with-JavaScript/m-p/1119954#M12596</link>
      <description>&lt;P&gt;the embed code you use seems to be a legacy form. the new forms use different embedding.&lt;/P&gt;</description>
      <pubDate>Sun, 09 Mar 2025 22:25:12 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/New-Forms-How-to-fill-hidden-fields-with-JavaScript/m-p/1119954#M12596</guid>
      <dc:creator>dash-flow-io</dc:creator>
      <dc:date>2025-03-09T22:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: New Forms: How to fill hidden fields with JavaScript</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/New-Forms-How-to-fill-hidden-fields-with-JavaScript/m-p/1119956#M12597</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;The following approaches also fail:&lt;BR /&gt;&lt;BR /&gt;1.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;STRONG&gt;FAIL&lt;/STRONG&gt;: prefill values &lt;/SPAN&gt;&lt;SPAN&gt;in&lt;/SPAN&gt;&lt;SPAN&gt; the iframe div&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;div class="hs-form-frame"&amp;gt;
data-region="eu1"
data-form-id="{{formid}}"
data-portal-id="{{portal}}"
data-hs-custom-field-myfield="example"
data-hs-prefill="myfield=example"
&amp;lt;/div&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;2.&lt;/SPAN&gt;&amp;nbsp;&lt;STRONG&gt;FAIL&lt;/STRONG&gt;:&amp;nbsp;&lt;SPAN&gt;sending&lt;/SPAN&gt; &lt;SPAN&gt;postMessage&lt;/SPAN&gt; &lt;SPAN&gt;to&lt;/SPAN&gt; &lt;SPAN&gt;iframe&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;html&amp;gt;
&amp;lt;script&amp;gt;
document.addEventListener('DOMContentLoaded', () =&amp;gt; {
    const FORM_ID = '...';
    const FIELD_NAME = 'myfield'; // Updated field name
    const IFRAME_SELECTOR = `iframe[data-test-id="embedded-form-${FORM_ID}"]`;

    const handleFormReady = (hsIframe) =&amp;gt; {
        // Log iframe details
        console.log('HubSpot iframe detected:', hsIframe);
        console.log('Iframe attributes:', Object.fromEntries(
            Array.from(hsIframe.attributes).map(attr =&amp;gt; [attr.name, attr.value])
        ));

        
        // Get iframe origin
        const iframeOrigin = new URL(hsIframe.src).origin;
        
        // Message handler for HubSpot form events
        const messageHandler = (event) =&amp;gt; {
            if (event.origin !== iframeOrigin) return;

            // Debug: Log all messages from HubSpot iframe
            console.log('Received HubSpot message:', event.data);

            if (event.data?.type === 'hsFormCallback' &amp;amp;&amp;amp;
                event.data?.eventName === 'onFormReady' &amp;amp;&amp;amp;
                event.data?.data?.formId === FORM_ID) {
                
                // Send field update with corrected field name
                hsIframe.contentWindow.postMessage({
                    type: 'hsFormRequest', // This is typically correct for HubSpot
                    data: {
                        fields: [{ 
                            name: FIELD_NAME, 
                            value: 'example' 
                        }]
                    }
                }, iframeOrigin);
            }
        };

        window.addEventListener('message', messageHandler);
    };

    // Initial iframe detection
    const hsIframe = document.querySelector(IFRAME_SELECTOR);
    if (hsIframe) return handleFormReady(hsIframe);

    // Setup mutation observer for dynamic loading
    new MutationObserver((_, observer) =&amp;gt; {
        const iframe = document.querySelector(IFRAME_SELECTOR);
        if (iframe) {
            handleFormReady(iframe);
            observer.disconnect();
        }
    }).observe(document.body, { childList: true, subtree: true });
});
&amp;lt;/script&amp;gt;

&amp;lt;!-- HubSpot embed code --&amp;gt;
&amp;lt;script src="https://js-eu1.hsforms.net/forms/embed/{{someid}}.js" defer&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;div class="hs-form-frame" 
    data-region="eu1" 
    data-form-id="{{formid}}" 
    data-portal-id="{{portal}}"&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;/html&amp;gt;​&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 09 Mar 2025 22:30:22 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/New-Forms-How-to-fill-hidden-fields-with-JavaScript/m-p/1119956#M12597</guid>
      <dc:creator>dash-flow-io</dc:creator>
      <dc:date>2025-03-09T22:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: New Forms: How to fill hidden fields with JavaScript</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/New-Forms-How-to-fill-hidden-fields-with-JavaScript/m-p/1120123#M12598</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/893035"&gt;@dash-flow-io&lt;/a&gt;&amp;nbsp; I can't definitely see this being a large pain point. I'd recomend sharing this with the product team through a feature request on the &lt;A href="Https://ideas.hubspot.com" target="_blank" rel="noopener"&gt;ideas forum here&lt;/A&gt;!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Mar 2025 10:37:15 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/New-Forms-How-to-fill-hidden-fields-with-JavaScript/m-p/1120123#M12598</guid>
      <dc:creator>TomM2</dc:creator>
      <dc:date>2025-03-10T10:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: New Forms: How to fill hidden fields with JavaScript</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/New-Forms-How-to-fill-hidden-fields-with-JavaScript/m-p/1121494#M12620</link>
      <description>&lt;P&gt;Hi Baskey, i think there is typo, you wrote "can't" but I think you meant "can"?&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2025 15:17:04 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/New-Forms-How-to-fill-hidden-fields-with-JavaScript/m-p/1121494#M12620</guid>
      <dc:creator>dash-flow-io</dc:creator>
      <dc:date>2025-03-12T15:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: New Forms: How to fill hidden fields with JavaScript</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/New-Forms-How-to-fill-hidden-fields-with-JavaScript/m-p/1122073#M12633</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/893035"&gt;@dash-flow-io&lt;/a&gt;&amp;nbsp;yep, you're correct, that is a typo. I have fat fingers and have to type a lot throughout my day.&amp;nbsp;&lt;BR /&gt;That still doesn't change my recomendation on opening this as a feature request to the product team however.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 16:20:42 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/New-Forms-How-to-fill-hidden-fields-with-JavaScript/m-p/1122073#M12633</guid>
      <dc:creator>TomM2</dc:creator>
      <dc:date>2025-03-13T16:20:42Z</dc:date>
    </item>
    <item>
      <title>Re: New Forms: How to fill hidden fields with JavaScript</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/New-Forms-How-to-fill-hidden-fields-with-JavaScript/m-p/1129327#M12696</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/893035"&gt;@dash-flow-io&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It works for legacy forms! I changed the javascript and removed the iFrame targeting.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Before&lt;/STRONG&gt; (using old iFrame implementation)&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;...
    document.getElementById("hs-form-iframe-0").contentDocument.querySelector('input[name="change_me"]').value = change_me;
...&lt;/LI-CODE&gt;
&lt;P&gt;&lt;STRONG&gt;After&lt;/STRONG&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;...
    document.querySelector('input[name="change_me"]').value = change_me;
...&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Final Code&lt;/STRONG&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;&amp;lt;script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/v2.js" defer&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script&amp;gt;
var change_me   = "123";
  
window.addEventListener('message', event =&amp;gt; {
  if(event.data.type === 'hsFormCallback' &amp;amp;&amp;amp; event.data.eventName === 'onFormReady') {
    document.querySelector('input[name="change_me"]').value = change_me;
  }
});
&amp;lt;/script&amp;gt;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does it work for you?&lt;/P&gt;
&lt;P&gt;Mike&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="font-size: 0.8rem;"&gt;Here to learn more about HubSpot and share my HubSpot Knowledge. I'm the founder of &lt;A href="https://www.webalite.com?utm_campaign=community-forum&amp;amp;utm_source=community&amp;amp;utm_content=signature" target="_blank" rel="noopener"&gt;Webalite&lt;/A&gt; a Gold HubSpot Partner Agency based in Wellington, New Zealand and the founder of &lt;STRONG&gt;Portal-iQ&lt;/STRONG&gt; the world's first automated &lt;A href="https://portal-iq.com?utm_campaign=community-forum&amp;amp;utm_source=community-forum&amp;amp;utm_content=signature" target="_blank" rel="noopener"&gt;HubSpot Portal Audit&lt;/A&gt; that helps you work smarter with HubSpot.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Oct 2025 09:34:14 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/New-Forms-How-to-fill-hidden-fields-with-JavaScript/m-p/1129327#M12696</guid>
      <dc:creator>Mike_Eastwood</dc:creator>
      <dc:date>2025-10-22T09:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: New Forms: How to fill hidden fields with JavaScript</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/New-Forms-How-to-fill-hidden-fields-with-JavaScript/m-p/1129332#M12697</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/893035"&gt;@dash-flow-io&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;p.s. My script is embedded in the html of a custom module; but I've also made it work in the javascript using the&amp;nbsp;&lt;STRONG&gt;onFormReady&lt;/STRONG&gt; &lt;A href="https://developers.hubspot.com/docs/reference/cms/forms#embed-code-callbacks" target="_blank" rel="noopener"&gt;Embed Code Callback&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;IMPORTANT&lt;/STRONG&gt;: The form must be "Set as raw HTML form" in the Form's Style Options (so, this only works for Markeitng Pro or Enterprise).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have fun&lt;/P&gt;
&lt;P&gt;Mike&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="font-size: 0.8rem;"&gt;Here to learn more about HubSpot and share my HubSpot Knowledge. I'm the founder of &lt;A href="https://www.webalite.com?utm_campaign=community-forum&amp;amp;utm_source=community&amp;amp;utm_content=signature" target="_blank" rel="noopener"&gt;Webalite&lt;/A&gt; a Gold HubSpot Partner Agency based in Wellington, New Zealand and the founder of &lt;STRONG&gt;Portal-iQ&lt;/STRONG&gt; the world's first automated &lt;A href="https://portal-iq.com?utm_campaign=community-forum&amp;amp;utm_source=community-forum&amp;amp;utm_content=signature" target="_blank" rel="noopener"&gt;HubSpot Portal Audit&lt;/A&gt; that helps you work smarter with HubSpot.&lt;/P&gt;</description>
      <pubDate>Sun, 30 Mar 2025 03:06:51 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/New-Forms-How-to-fill-hidden-fields-with-JavaScript/m-p/1129332#M12697</guid>
      <dc:creator>Mike_Eastwood</dc:creator>
      <dc:date>2025-03-30T03:06:51Z</dc:date>
    </item>
    <item>
      <title>Re: New Forms: How to fill hidden fields with JavaScript</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/New-Forms-How-to-fill-hidden-fields-with-JavaScript/m-p/1129467#M12698</link>
      <description>&lt;P&gt;Your example refers to the legacy forms, not the new multi-step forms.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 30 Mar 2025 17:06:17 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/New-Forms-How-to-fill-hidden-fields-with-JavaScript/m-p/1129467#M12698</guid>
      <dc:creator>dash-flow-io</dc:creator>
      <dc:date>2025-03-30T17:06:17Z</dc:date>
    </item>
  </channel>
</rss>

