<?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: AutoSubmit with Gravity Forms</title>
		<link>https://legacy.forums.gravityhelp.com/topic/autosubmit-with-gravity-forms</link>
		<description>Gravity Support Forums Topic: AutoSubmit with Gravity Forms</description>
		<language>en-US</language>
		<pubDate>Wed, 22 Apr 2026 17:24:18 +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/autosubmit-with-gravity-forms" rel="self" type="application/rss+xml" />

		<item>
			<title>Alexander Kohl on "AutoSubmit with Gravity Forms"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/autosubmit-with-gravity-forms#post-303071</link>
			<pubDate>Wed, 05 Jun 2013 03:34:51 +0000</pubDate>
			<dc:creator>Alexander Kohl</dc:creator>
			<guid isPermaLink="false">303071@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;That works really well. How would I add some code that stops the javascript if there is an error in the form submission. Currently, it just keeps trying to submit.&#60;br /&#62;
Thanks&#60;br /&#62;
Alexander
&#60;/p&#62;</description>
		</item>
		<item>
			<title>trishacornelius on "AutoSubmit with Gravity Forms"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/autosubmit-with-gravity-forms#post-16865</link>
			<pubDate>Sat, 22 Jan 2011 16:36:45 +0000</pubDate>
			<dc:creator>trishacornelius</dc:creator>
			<guid isPermaLink="false">16865@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks! &#60;/p&#62;
&#60;p&#62;I will give it a shot and let you know how it turns out.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "AutoSubmit with Gravity Forms"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/autosubmit-with-gravity-forms#post-16863</link>
			<pubDate>Sat, 22 Jan 2011 16:10:14 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">16863@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The only solution we could think of to automate this without getting into far more complex solutions, is to just add a bit of jQuery to trigger the form submission when the page is loaded. Something like this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;

jQuery(document).ready(function(){

    jQuery(&#38;#39;form#gform_20&#38;#39;).trigger(&#38;#39;submit&#38;#39;);

});

&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>trishacornelius on "AutoSubmit with Gravity Forms"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/autosubmit-with-gravity-forms#post-16859</link>
			<pubDate>Sat, 22 Jan 2011 12:42:10 +0000</pubDate>
			<dc:creator>trishacornelius</dc:creator>
			<guid isPermaLink="false">16859@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi, &#60;/p&#62;
&#60;p&#62;I am just bumping this post...making sure it doesn't get lost in the timezone vortex :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "AutoSubmit with Gravity Forms"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/autosubmit-with-gravity-forms#post-16781</link>
			<pubDate>Fri, 21 Jan 2011 13:28:02 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">16781@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Trish,&#60;/p&#62;
&#60;p&#62;I'm actually not 100% sure on Step 3. I passed some of my thoughts along to our lead developer who will confirm and I will get back with you either late tonight or early tomorrow morning (he's in a different timezone).&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>trishacornelius on "AutoSubmit with Gravity Forms"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/autosubmit-with-gravity-forms#post-16335</link>
			<pubDate>Sat, 15 Jan 2011 14:10:11 +0000</pubDate>
			<dc:creator>trishacornelius</dc:creator>
			<guid isPermaLink="false">16335@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;So far I have been very impressed with Gravity and I only started using it this week :). &#60;/p&#62;
&#60;p&#62;Is it possible to create a form with an automatic submit...in other words, a form where the user does not see the information (hidden fields with dynamic population) and it is automatically submitted - the information is stored in the GF database in WordPress?&#60;/p&#62;
&#60;p&#62;The situation that I am trying to cater for is the following:&#60;br /&#62;
1. Purchaser completes an order form on our site.&#60;br /&#62;
2. The completed form gets sent to a third party payment processor using gform_post_submission.&#60;br /&#62;
3. Then the payment processor sends back a confirmation form with the details of the successful payment. I would like to use GF to capture this information from the confirmation without a user having to do anything.&#60;br /&#62;
4.The user gets directed to a confirmation page. &#60;/p&#62;
&#60;p&#62;I have no problems doing 1,2, and 4 with GF. Please can someone give me some help with 3.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
