<?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: Add a counter to a text widget in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/Add-a-counter-to-a-text-widget/m-p/740217#M32266</link>
    <description>&lt;P&gt;Thank you,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/133120"&gt;@MatthiasWeber&lt;/a&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":raising_hands:"&gt;🙌&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 11 Jan 2023 17:13:30 GMT</pubDate>
    <dc:creator>Jaycee_Lewis</dc:creator>
    <dc:date>2023-01-11T17:13:30Z</dc:date>
    <item>
      <title>Add a counter to a text widget</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Add-a-counter-to-a-text-widget/m-p/738684#M32192</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot from 2023-01-09 11-19-28.png" style="width: 357px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/82618iA8305DA408839676/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot from 2023-01-09 11-19-28.png" alt="Screenshot from 2023-01-09 11-19-28.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I have a text widget and I'd like to add a counter that updates in real time with the number of characters typed. This is a widget by Hubspot.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{{ module.text_field }}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;Is there a way of doing this?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2023 08:24:54 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Add-a-counter-to-a-text-widget/m-p/738684#M32192</guid>
      <dc:creator>LDouglas8</dc:creator>
      <dc:date>2023-01-09T08:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: Add a counter to a text widget</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Add-a-counter-to-a-text-widget/m-p/738992#M32201</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/415658"&gt;@LDouglas8&lt;/a&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt; Thanks for reaching out! I wonder if we can accomplish this using some JavaScript? Hey,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/133120"&gt;@MatthiasWeber&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/250023"&gt;@Oezcan&lt;/a&gt;,&amp;nbsp;do you have any experience here?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;Jaycee&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2023 19:07:39 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Add-a-counter-to-a-text-widget/m-p/738992#M32201</guid>
      <dc:creator>Jaycee_Lewis</dc:creator>
      <dc:date>2023-01-09T19:07:39Z</dc:date>
    </item>
    <item>
      <title>Re: Add a counter to a text widget</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Add-a-counter-to-a-text-widget/m-p/739571#M32238</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&amp;nbsp;,Hi&amp;nbsp;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;with the magic of JavaScript everything is possible&amp;nbsp;🪄&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=""&gt;&lt;CODE class=""&gt;$(&lt;SPAN class=""&gt;'textarea').&lt;SPAN class=""&gt;keyup(updateCount);
$(&lt;SPAN class=""&gt;'textarea').&lt;SPAN class=""&gt;keydown(updateCount);

&lt;SPAN class=""&gt;function &lt;SPAN class=""&gt;updateCount() {
    &lt;SPAN class=""&gt;var cs = $(&lt;SPAN class=""&gt;this).&lt;SPAN class=""&gt;val().&lt;SPAN class=""&gt;length;
    $(&lt;SPAN class=""&gt;'#characters').&lt;SPAN class=""&gt;text(cs);
}&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;source:&amp;nbsp;&lt;A href="https://stackoverflow.com/questions/9767521/count-and-display-number-of-characters-in-a-textbox-using-javascript" target="_blank" rel="noopener"&gt;https://stackoverflow.com/questions/9767521/count-and-display-number-of-characters-in-a-textbox-using-javascript&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What do you think?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;BR /&gt;&lt;A href="https://www.linkedin.com/in/matthias-weber-816410114/" target="_blank" rel="nofollow noopener noreferrer"&gt;&lt;BR /&gt;&lt;IMG border="0" width="241" height="296" /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/A&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;BR /&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Gemeinsam für digitales Unternehmenswachstum! Wir glauben an &lt;A href="https://die-digital-weber.de/der-digital-weber-blog/human-centric-growth-mindset" target="_blank" rel="noopener"&gt;Human Centric, &lt;/A&gt;&lt;A href="https://die-digital-weber.de/der-digital-weber-blog/inbound" target="_blank" rel="noopener"&gt;Online-Marketing mit Inbound und &lt;/A&gt;&lt;A href="https://die-digital-weber.de/der-digital-weber-blog/mobile-working" target="_blank" rel="noopener"&gt;Digitale Geschäftsprozesse.&lt;BR /&gt;&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Sie wollen mit Ihrem Unternehmen weiter kommen? Mit den &lt;A href="https://die-digital-weber.de/services/einkaufsberatung" target="_blank" rel="noopener"&gt;Digital-Webern wird der Weg einfacher!&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;CENTER&gt;&lt;BR /&gt;&lt;A href="https://meetings.hubspot.com/matthias-weber/30-minuten-gesprach-mit-matthias-weber" target="_blank" rel="nofollow noopener noreferrer"&gt;&lt;BR /&gt;&lt;IMG border="0" width="400" height="22" /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/A&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;/CENTER&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;PRE class=""&gt;&lt;CODE class=""&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/127074"&gt;@Jaycee_Lewis&lt;/a&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jan 2023 17:32:16 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Add-a-counter-to-a-text-widget/m-p/739571#M32238</guid>
      <dc:creator>MatthiasWeber</dc:creator>
      <dc:date>2023-01-10T17:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: Add a counter to a text widget</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Add-a-counter-to-a-text-widget/m-p/740217#M32266</link>
      <description>&lt;P&gt;Thank you,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/133120"&gt;@MatthiasWeber&lt;/a&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":raising_hands:"&gt;🙌&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 17:13:30 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Add-a-counter-to-a-text-widget/m-p/740217#M32266</guid>
      <dc:creator>Jaycee_Lewis</dc:creator>
      <dc:date>2023-01-11T17:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: Add a counter to a text widget</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Add-a-counter-to-a-text-widget/m-p/740680#M32281</link>
      <description>&lt;P&gt;Thanks,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/133120"&gt;@MatthiasWeber&lt;/a&gt;. The challenge though is that I'm trying to add the counter to the Hubspot Landing page text editor. I don't have access to it via javascript, so I can't access it. That text editor is part of my Hubspot landing page sidebar (Where I can edit content for the main page).&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jan 2023 14:26:01 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Add-a-counter-to-a-text-widget/m-p/740680#M32281</guid>
      <dc:creator>emmyobonyo</dc:creator>
      <dc:date>2023-01-12T14:26:01Z</dc:date>
    </item>
    <item>
      <title>Re: Add a counter to a text widget</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Add-a-counter-to-a-text-widget/m-p/741030#M32294</link>
      <description>&lt;P&gt;understood&amp;nbsp;&amp;nbsp;. Do you have the options "settings" in the landing page. There should be additional options, where you can add Header-HTML direct. Maybe that helps.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I attach here a german based screenshot, this should help finding it:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you add here your JavaScripts?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;BR /&gt;&lt;A href="https://www.linkedin.com/in/matthias-weber-816410114/" target="_blank" rel="nofollow noopener noreferrer"&gt;&lt;BR /&gt;&lt;IMG border="0" width="241" height="296" /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/A&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;BR /&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Gemeinsam für digitales Unternehmenswachstum! Wir glauben an &lt;A href="https://die-digital-weber.de/der-digital-weber-blog/human-centric-growth-mindset" target="_blank" rel="noopener"&gt;Human Centric, &lt;/A&gt;&lt;A href="https://die-digital-weber.de/der-digital-weber-blog/inbound" target="_blank" rel="noopener"&gt;Online-Marketing mit Inbound und &lt;/A&gt;&lt;A href="https://die-digital-weber.de/der-digital-weber-blog/mobile-working" target="_blank" rel="noopener"&gt;Digitale Geschäftsprozesse.&lt;BR /&gt;&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Sie wollen mit Ihrem Unternehmen weiter kommen? Mit den &lt;A href="https://die-digital-weber.de/services/einkaufsberatung" target="_blank" rel="noopener"&gt;Digital-Webern wird der Weg einfacher!&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;CENTER&gt;&lt;BR /&gt;&lt;A href="https://meetings.hubspot.com/matthias-weber/30-minuten-gesprach-mit-matthias-weber" target="_blank" rel="nofollow noopener noreferrer"&gt;&lt;BR /&gt;&lt;IMG border="0" width="400" height="22" /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/A&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/CENTER&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MatthiasWeber_0-1673591688242.png" style="width: 400px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/82982i48C9C3FCA6D0D2C5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MatthiasWeber_0-1673591688242.png" alt="MatthiasWeber_0-1673591688242.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/503144"&gt;@emmyobonyo&lt;/a&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2023 06:35:28 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Add-a-counter-to-a-text-widget/m-p/741030#M32294</guid>
      <dc:creator>MatthiasWeber</dc:creator>
      <dc:date>2023-01-13T06:35:28Z</dc:date>
    </item>
  </channel>
</rss>

