<?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: jQuery .slideUp Form on Submit</title>
		<link>https://legacy.forums.gravityhelp.com/topic/jquery-slideup-form-on-submit</link>
		<description>Gravity Support Forums Topic: jQuery .slideUp Form on Submit</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 16:54:08 +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/jquery-slideup-form-on-submit" rel="self" type="application/rss+xml" />

		<item>
			<title>brianrhea on "jQuery .slideUp Form on Submit"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-slideup-form-on-submit#post-22661</link>
			<pubDate>Wed, 06 Apr 2011 17:32:45 +0000</pubDate>
			<dc:creator>brianrhea</dc:creator>
			<guid isPermaLink="false">22661@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Like a Boss.&#60;/p&#62;
&#60;p&#62;Thanks David!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "jQuery .slideUp Form on Submit"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-slideup-form-on-submit#post-22573</link>
			<pubDate>Tue, 05 Apr 2011 16:58:10 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">22573@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Try replacing your script block with this updated code: &#60;a href=&#34;http://pastie.org/1760487&#34; rel=&#34;nofollow&#34;&#62;http://pastie.org/1760487&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>brianrhea on "jQuery .slideUp Form on Submit"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-slideup-form-on-submit#post-22571</link>
			<pubDate>Tue, 05 Apr 2011 16:22:11 +0000</pubDate>
			<dc:creator>brianrhea</dc:creator>
			<guid isPermaLink="false">22571@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;&#60;a href=&#34;http://test.dalworthrestoration.com/&#34; rel=&#34;nofollow&#34;&#62;http://test.dalworthrestoration.com/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "jQuery .slideUp Form on Submit"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-slideup-form-on-submit#post-22526</link>
			<pubDate>Tue, 05 Apr 2011 11:45:58 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">22526@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Can you post a link to the form so I can check it out?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>brianrhea on "jQuery .slideUp Form on Submit"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-slideup-form-on-submit#post-22523</link>
			<pubDate>Tue, 05 Apr 2011 11:39:19 +0000</pubDate>
			<dc:creator>brianrhea</dc:creator>
			<guid isPermaLink="false">22523@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hmm, not working on the first effort.&#60;/p&#62;
&#60;p&#62;Just to clarify, when I go to Widgets and look at the advanced options for that instance of the form, I have Enable AJAX checked, Disable script output unchecked.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "jQuery .slideUp Form on Submit"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-slideup-form-on-submit#post-22518</link>
			<pubDate>Tue, 05 Apr 2011 11:29:50 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">22518@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You'd want it in the &#38;lt;head&#38;gt; section which would be above the body tag; but yes, assuming the IDs you are targeting with your jQuery animations are correct, that should work. :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>brianrhea on "jQuery .slideUp Form on Submit"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-slideup-form-on-submit#post-22516</link>
			<pubDate>Tue, 05 Apr 2011 11:27:56 +0000</pubDate>
			<dc:creator>brianrhea</dc:creator>
			<guid isPermaLink="false">22516@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks David,&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
   jQuery(document).bind(&#38;#39;gform_confirmation_loaded&#38;#39;, function(){
     $(&#38;#39;#contact-form&#38;#39;).slideUp(&#38;#39;slow&#38;#39;); $(&#38;#39;#form-success&#38;#39;).slideDown(&#38;#39;slow&#38;#39;);
   });
&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;So do I understand correctly that I can active Ajax submission and insert the above code just above the &#38;lt;/body&#38;gt; tag of my page and expect to see correct behavior?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "jQuery .slideUp Form on Submit"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-slideup-form-on-submit#post-22404</link>
			<pubDate>Mon, 04 Apr 2011 11:43:28 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">22404@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Brian,&#60;/p&#62;
&#60;p&#62;Assuming your form is using the AJAX submission feature, you can bind your function to the &#60;strong&#62;gform_confirmation_loaded&#60;/strong&#62; javascript event. Here is some sample code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[js]
&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;

jQuery(document).bind(&#38;#39;gform_confirmation_loaded&#38;#39;, function(){

    alert(&#38;#39;Confirmation Loaded!&#38;#39;);

});

&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>brianrhea on "jQuery .slideUp Form on Submit"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-slideup-form-on-submit#post-22362</link>
			<pubDate>Sun, 03 Apr 2011 22:34:46 +0000</pubDate>
			<dc:creator>brianrhea</dc:creator>
			<guid isPermaLink="false">22362@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Guys,&#60;/p&#62;
&#60;p&#62;This is the best cash I've spent on a dev tool since I bought Coda. Nice work!&#60;/p&#62;
&#60;p&#62;Now, here's a question. Before I bought Gravity Forms I was using Contact Form 7 and on submission, I would initialize the following jQuery:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$(&#38;#39;#contact-form&#38;#39;).slideUp(&#38;#39;slow&#38;#39;); $(&#38;#39;#form-success&#38;#39;).slideDown(&#38;#39;slow&#38;#39;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;My contact form would nicely slide away and a previously hidden success message would replace it. This is better than just displaying a message in place of the form because my form is 500px tall and the success message only 150px, so it shifts the rest of the sidebar content up and the design stays intact.&#60;/p&#62;
&#60;p&#62;Is there a way to replicate this behavior with Gravity Forms?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
