<?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: Form button not doing anything</title>
		<link>https://legacy.forums.gravityhelp.com/topic/form-button-not-doing-anything</link>
		<description>Gravity Support Forums Topic: Form button not doing anything</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 12:25:02 +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/form-button-not-doing-anything" rel="self" type="application/rss+xml" />

		<item>
			<title>David Smith on "Form button not doing anything"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-button-not-doing-anything#post-32244</link>
			<pubDate>Wed, 10 Aug 2011 15:21:31 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">32244@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The easiest way would be to save the form HTML as a global javascript variable when the page is loaded. Then when the layer is closed, you can replace the existing form HTML with the saved HTML. Something like:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[js]
var origFormHTML = &#38;#39;&#38;#39;;
jQuery(document).ready(function(){
    origFormHTML = jQuery(&#38;quot;#gform_wrapper_2&#38;quot;).html();
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And then inside your close event add a line like this:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[js]
jQuery(&#38;quot;#gform_wrapper_2&#38;quot;).html(origFormHTML);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;`
&#60;/p&#62;</description>
		</item>
		<item>
			<title>iamcanadian1973 on "Form button not doing anything"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-button-not-doing-anything#post-32221</link>
			<pubDate>Wed, 10 Aug 2011 14:18:38 +0000</pubDate>
			<dc:creator>iamcanadian1973</dc:creator>
			<guid isPermaLink="false">32221@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm wondering if someone would be able to answer my last question?&#60;/p&#62;
&#60;p&#62;&#34;How would I reset the form when the layer is closed? &#34;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>iamcanadian1973 on "Form button not doing anything"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-button-not-doing-anything#post-31781</link>
			<pubDate>Thu, 04 Aug 2011 17:48:14 +0000</pubDate>
			<dc:creator>iamcanadian1973</dc:creator>
			<guid isPermaLink="false">31781@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;How would I reset the form when the layer is closed?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>iamcanadian1973 on "Form button not doing anything"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-button-not-doing-anything#post-31780</link>
			<pubDate>Thu, 04 Aug 2011 17:45:51 +0000</pubDate>
			<dc:creator>iamcanadian1973</dc:creator>
			<guid isPermaLink="false">31780@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;thanks,&#60;/p&#62;
&#60;p&#62;that did it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "Form button not doing anything"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-button-not-doing-anything#post-31775</link>
			<pubDate>Thu, 04 Aug 2011 17:29:53 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">31775@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Iamcanadian,&#60;/p&#62;
&#60;p&#62;Try updating this bit of code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$(&#38;quot;#email_popup&#38;quot;).click(function(event){
		 	event.preventDefault();
			$(&#38;#39;#email_form&#38;#39;).show();
			return false;
		});&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$(&#38;quot;#email_popup&#38;quot;).click(function(event){
			$(&#38;#39;#email_form&#38;#39;).show();
		});&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>iamcanadian1973 on "Form button not doing anything"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-button-not-doing-anything#post-31773</link>
			<pubDate>Thu, 04 Aug 2011 17:16:45 +0000</pubDate>
			<dc:creator>iamcanadian1973</dc:creator>
			<guid isPermaLink="false">31773@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Maybe I need to use an iframe? I just couldnt see why if I am using ajax to submit the form.&#60;/p&#62;
&#60;p&#62;I attached an alert to the submit button and it is registering as being clicked.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>iamcanadian1973 on "Form button not doing anything"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-button-not-doing-anything#post-31771</link>
			<pubDate>Thu, 04 Aug 2011 17:12:45 +0000</pubDate>
			<dc:creator>iamcanadian1973</dc:creator>
			<guid isPermaLink="false">31771@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The ehad of my page&#60;br /&#62;
&#60;code&#62;gravity_form_enqueue_scripts(2, true);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;The form&#60;br /&#62;
&#60;code&#62;gravity_form(2, $display_title=false, $display_description=true, $display_inactive=false, $field_values=null, $ajax=true);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;the popup works. Its just a hidden div that gets shown or hidden on click.&#60;/p&#62;
&#60;p&#62;I provided a link in my original post.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Form button not doing anything"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-button-not-doing-anything#post-31769</link>
			<pubDate>Thu, 04 Aug 2011 17:07:40 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">31769@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Very strange.  How have you implemented that popup?  Have you tried enabling AJAX?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>iamcanadian1973 on "Form button not doing anything"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-button-not-doing-anything#post-31766</link>
			<pubDate>Thu, 04 Aug 2011 17:02:24 +0000</pubDate>
			<dc:creator>iamcanadian1973</dc:creator>
			<guid isPermaLink="false">31766@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have a form in a layer that popups up.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://megadome.mediast.com/&#34; rel=&#34;nofollow&#34;&#62;http://megadome.mediast.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Its on the left side of the page under the menu, if you click &#34;download your own design guide&#34;&#60;/p&#62;
&#60;p&#62;I click the submit button and nothing happens.&#60;/p&#62;
&#60;p&#62;firebug says nothing. and I honestly have not the foggiest clue how to trouble shoot this so I've come to pleade for some help! :P&#60;/p&#62;
&#60;p&#62;Can someone help me with this? Thanks very much.&#60;/p&#62;
&#60;p&#62;FYI, amazing product, I use it all the time and it has definitely paid for itself many times.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
