<?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: Grey out submit button</title>
		<link>https://legacy.forums.gravityhelp.com/topic/grey-out-submit-button</link>
		<description>Gravity Support Forums Topic: Grey out submit button</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 04:32:51 +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/grey-out-submit-button" rel="self" type="application/rss+xml" />

		<item>
			<title>Anonymous on "Grey out submit button"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/grey-out-submit-button#post-3462</link>
			<pubDate>Wed, 17 Feb 2010 17:46:48 +0000</pubDate>
			<dc:creator>Anonymous</dc:creator>
			<guid isPermaLink="false">3462@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;This can be closed, It works perfectly.  Thanks, for the help!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Grey out submit button"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/grey-out-submit-button#post-3436</link>
			<pubDate>Tue, 16 Feb 2010 17:57:23 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">3436@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;If you're already checking to see if the user is logged in, I would simply apply the method above if they are NOT logged in, and default to the normal button behavior if they are.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Anonymous on "Grey out submit button"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/grey-out-submit-button#post-3433</link>
			<pubDate>Tue, 16 Feb 2010 17:51:45 +0000</pubDate>
			<dc:creator>Anonymous</dc:creator>
			<guid isPermaLink="false">3433@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The first case is exactly what I wanted.  Now how would I invoke it a second time to re-activate it?  I am making sure the the user is logged in via Active Directory before they can submit the form.  I can do the php, just need to know how to call it again.&#60;/p&#62;
&#60;p&#62;thanks,&#60;br /&#62;
Danny
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Grey out submit button"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/grey-out-submit-button#post-3432</link>
			<pubDate>Tue, 16 Feb 2010 17:38:53 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">3432@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hey Danny,&#60;/p&#62;
&#60;p&#62;I'm not 100% sure what you're trying to do, but you can disable the button by adding the &#34;disabled&#34; attribute with some script. You can drop this in your header.php file or page template. If you're already loading jQuery for your theme, you can omit the first script reference.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;quot; src=&#38;quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;
  &#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
  $(document).ready(function() {

    $(&#38;#39;#gform_1 input[type=submit]&#38;#39;, this).attr(&#38;#39;disabled&#38;#39;, &#38;#39;disabled&#38;#39;);

  });
 &#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;where the &#34;gform_1&#34; above is your form ID.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://grab.by/2t0K&#34; rel=&#34;nofollow&#34;&#62;test screenshot&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;If you just wanted to hide the button completely, you can do this with some simple css inheritance.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;#gform_1 .gform_footer .button {display:none;}&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Anonymous on "Grey out submit button"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/grey-out-submit-button#post-3422</link>
			<pubDate>Tue, 16 Feb 2010 15:32:44 +0000</pubDate>
			<dc:creator>Anonymous</dc:creator>
			<guid isPermaLink="false">3422@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I noticed this post which is close to what I want, &#60;a href=&#34;http://forum.gravityhelp.com/topic/hide-the-submit-button-conditionally&#34; rel=&#34;nofollow&#34;&#62;http://forum.gravityhelp.com/topic/hide-the-submit-button-conditionally&#60;/a&#62;, but not exactly.  What I want to do is disable the submit button, not the data that is contained within the form.&#60;/p&#62;
&#60;p&#62;The website is behind a firewall on an intranet, so I can't give you the link, but here is the source for the form.&#60;/p&#62;
&#60;p&#62;Since there is no id for the the submit button, I am not sure how to do it.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;quot;gform_wrapper&#38;quot; id=&#38;quot;gform_wrapper_1&#38;quot;&#38;gt;
                &#38;lt;form method=&#38;quot;post&#38;quot; enctype=&#38;quot;multipart/form-data&#38;quot; id=&#38;quot;gform_1&#38;quot; class=&#38;quot;&#38;quot; action=&#38;quot;&#38;quot;&#38;gt;
                        &#38;lt;div class=&#38;quot;gform_heading&#38;quot;&#38;gt;
                            &#38;lt;h3 class=&#38;quot;gform_title&#38;quot;&#38;gt;Got something to share with the rest of us?&#38;lt;/h3&#38;gt;
                        &#38;lt;/div&#38;gt;
                        &#38;lt;div class=&#38;quot;gform_body&#38;quot;&#38;gt;
                            &#38;lt;input class=&#38;quot;gform_hidden&#38;quot; name=&#38;quot;is_submit_1&#38;quot; value=&#38;quot;1&#38;quot; type=&#38;quot;hidden&#38;quot;&#38;gt;
                            &#38;lt;ul id=&#38;quot;gform_fields_1&#38;quot; class=&#38;quot;gform_fields top_label&#38;quot;&#38;gt;&#38;lt;li id=&#38;quot;field_1_2&#38;quot; class=&#38;quot;gfield&#38;quot;&#38;gt;&#38;lt;label class=&#38;quot;gfield_label&#38;quot; for=&#38;quot;input_1_2&#38;quot;&#38;gt;Subject&#38;lt;span class=&#38;quot;gfield_required&#38;quot;&#38;gt;*&#38;lt;/span&#38;gt;&#38;lt;/label&#38;gt;&#38;lt;div&#38;gt;&#38;lt;input name=&#38;quot;input_2&#38;quot; id=&#38;quot;input_1_2&#38;quot; value=&#38;quot;&#38;quot; class=&#38;quot;small&#38;quot; tabindex=&#38;quot;1&#38;quot; type=&#38;quot;text&#38;quot;&#38;gt;&#38;lt;/div&#38;gt;&#38;lt;li id=&#38;quot;field_1_3&#38;quot; class=&#38;quot;gfield&#38;quot;&#38;gt;&#38;lt;label class=&#38;quot;gfield_label&#38;quot; for=&#38;quot;input_1_3&#38;quot;&#38;gt;Phone&#38;lt;span class=&#38;quot;gfield_required&#38;quot;&#38;gt;*&#38;lt;/span&#38;gt;&#38;lt;/label&#38;gt;&#38;lt;div class=&#38;quot;ginput_container&#38;quot;&#38;gt;&#38;lt;input name=&#38;quot;input_3&#38;quot; id=&#38;quot;input_1_3&#38;quot; value=&#38;quot;&#38;quot; class=&#38;quot;medium&#38;quot; tabindex=&#38;quot;2&#38;quot; type=&#38;quot;text&#38;quot;&#38;gt;&#38;lt;/div&#38;gt;&#38;lt;li id=&#38;quot;field_1_4&#38;quot; class=&#38;quot;gfield    foobar&#38;quot;&#38;gt;&#38;lt;label class=&#38;quot;gfield_label&#38;quot; for=&#38;quot;input_1_4&#38;quot;&#38;gt;Tell us more:&#38;lt;span class=&#38;quot;gfield_required&#38;quot;&#38;gt;*&#38;lt;/span&#38;gt;&#38;lt;/label&#38;gt;&#38;lt;div&#38;gt;&#38;lt;textarea name=&#38;quot;input_4&#38;quot; id=&#38;quot;input_1_4&#38;quot; class=&#38;quot;textarea small&#38;quot; tabindex=&#38;quot;3&#38;quot; rows=&#38;quot;10&#38;quot; cols=&#38;quot;50&#38;quot;&#38;gt;&#38;lt;/textarea&#38;gt;&#38;lt;/div&#38;gt;

                        &#38;lt;/div&#38;gt;
                        &#38;lt;div class=&#38;quot;gform_footer top_label&#38;quot;&#38;gt;&#38;lt;input class=&#38;quot;button&#38;quot; value=&#38;quot;Tell Us!&#38;quot; tabindex=&#38;quot;4&#38;quot; type=&#38;quot;submit&#38;quot;&#38;gt;
                        &#38;lt;/div&#38;gt;
                &#38;lt;/form&#38;gt;
                &#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>

	</channel>
</rss>
