<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: Update the NAME attribute of FORM</title>
		<link>https://legacy.forums.gravityhelp.com/topic/update-the-name-attribute-of-form</link>
		<description>Gravity Support Forums Topic: Update the NAME attribute of FORM</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 20:23:50 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/update-the-name-attribute-of-form" rel="self" type="application/rss+xml" />

		<item>
			<title>David Smith on "Update the NAME attribute of FORM"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/update-the-name-attribute-of-form#post-45739</link>
			<pubDate>Fri, 06 Jan 2012 19:07:14 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">45739@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Glad to help. Closing this topic. Feel free to post a new topic if further issues arise. :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rentageekmom on "Update the NAME attribute of FORM"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/update-the-name-attribute-of-form#post-43919</link>
			<pubDate>Tue, 13 Dec 2011 11:01:16 +0000</pubDate>
			<dc:creator>rentageekmom</dc:creator>
			<guid isPermaLink="false">43919@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks!! That inserted the name. I need to wrestle with the other script now - it tries to execute before the NAME is inserted - but I can contact their support for that. Thank you so much!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "Update the NAME attribute of FORM"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/update-the-name-attribute-of-form#post-43854</link>
			<pubDate>Mon, 12 Dec 2011 19:54:49 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">43854@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi rentageekmom,&#60;/p&#62;
&#60;p&#62;Try wrapping your code in jQuery(document).ready():&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[js]
&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
jQuery(document).ready(function(){
    jQuery(&#38;quot;#gform_3&#38;quot;).attr(&#38;#39;name&#38;#39;, &#38;#39;gf_ellie&#38;#39;);
});
&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>rentageekmom on "Update the NAME attribute of FORM"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/update-the-name-attribute-of-form#post-43711</link>
			<pubDate>Sun, 11 Dec 2011 22:02:28 +0000</pubDate>
			<dc:creator>rentageekmom</dc:creator>
			<guid isPermaLink="false">43711@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I wish - I don't have control over the script, it's with a third-party service my client is using for e-Ink signatures on the forms. &#60;/p&#62;
&#60;p&#62;Code should be right in the head now.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Update the NAME attribute of FORM"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/update-the-name-attribute-of-form#post-43531</link>
			<pubDate>Fri, 09 Dec 2011 02:45:49 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">43531@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;All the forms have an ID already.  Can you modify the JavaScript to use the ID rather than the name?  If not, can you add that jQuery to the page so we can take a look?  I don't see it there now.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rentageekmom on "Update the NAME attribute of FORM"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/update-the-name-attribute-of-form#post-43455</link>
			<pubDate>Thu, 08 Dec 2011 15:02:00 +0000</pubDate>
			<dc:creator>rentageekmom</dc:creator>
			<guid isPermaLink="false">43455@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi :)&#60;/p&#62;
&#60;p&#62;I am trying to integrate an eInk signature from a company that does secure forms. I've already got the form POST uri updated to work with this system, which was awesome. I haven't been able to find the answer to this, though:&#60;/p&#62;
&#60;p&#62;I need to be able to add some javascript to the form (just gonna use an HTML block, no big) - but that javascript needs to use the form NAME to work. And the GFs don't seem to HAVE a name attribute. I tried adding one with jQuery but I'm not great with it, and while I am not getting any errors (weird?) it's also not working (boo). &#60;/p&#62;
&#60;p&#62;Trying to use this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
jQuery(&#38;quot;#gform_3&#38;quot;).attr(&#38;#39;name&#38;#39;, &#38;#39;gf_ellie&#38;#39;);
&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Form is here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://elliefund.org/grant-application/&#34; rel=&#34;nofollow&#34;&#62;http://elliefund.org/grant-application/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
