<?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: Multi-Page form question</title>
		<link>https://legacy.forums.gravityhelp.com/topic/multi-page-form-question</link>
		<description>Gravity Support Forums Topic: Multi-Page form question</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 11:05:23 +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/multi-page-form-question" rel="self" type="application/rss+xml" />

		<item>
			<title>joshuakons on "Multi-Page form question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multi-page-form-question#post-47715</link>
			<pubDate>Sun, 29 Jan 2012 19:34:21 +0000</pubDate>
			<dc:creator>joshuakons</dc:creator>
			<guid isPermaLink="false">47715@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am trying to insert this snippet of code to prevent AJAX from breaking my Cufon fonts when I use multi-form pages.  I have tried everything, but cannot figure out where to insert this code or how to make it function.  I have inserted it directly in header.php in several locations to no avail.  Can someone help me with this? The code I am trying to insert is below:&#60;/p&#62;
&#60;p&#62;&#38;lt;script type=&#34;text/javascript&#34;&#38;gt;&#60;br /&#62;
2	    jQuery(document).ready(function(){&#60;br /&#62;
3&#60;br /&#62;
4	        jQuery(document).bind('gform_page_loaded', function(){&#60;br /&#62;
5	            Cufon.refresh('h1,h2,h3,h4,h5,h6');&#60;br /&#62;
6	        });&#60;br /&#62;
7&#60;br /&#62;
8	    })&#60;br /&#62;
9	&#38;lt;/script&#38;gt;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>johnmce on "Multi-Page form question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multi-page-form-question#post-21231</link>
			<pubDate>Wed, 23 Mar 2011 18:51:38 +0000</pubDate>
			<dc:creator>johnmce</dc:creator>
			<guid isPermaLink="false">21231@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi guys I'm trying to get Analytics setup on multi-page forms as described by idealists.&#60;/p&#62;
&#60;p&#62;Can anyone share the exact code I need to use and where I need to put it? (assuming its roughly that simple!) &#60;/p&#62;
&#60;p&#62;Thanks:-)&#60;/p&#62;
&#60;p&#62;John
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "Multi-Page form question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multi-page-form-question#post-16883</link>
			<pubDate>Sun, 23 Jan 2011 09:18:03 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">16883@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Idealist,&#60;/p&#62;
&#60;p&#62;I had actually intended to provide you this snippet as well which shows you the parameters available to this hook and how to retrieve them:&#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_page_loaded&#38;#39;, function(event, form_id, current_page){
    // code to be trigger when next/previous page is loaded
});

&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>idealists on "Multi-Page form question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multi-page-form-question#post-16882</link>
			<pubDate>Sun, 23 Jan 2011 08:52:15 +0000</pubDate>
			<dc:creator>idealists</dc:creator>
			<guid isPermaLink="false">16882@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for your reply,&#60;/p&#62;
&#60;p&#62;With that jQuery Hook is there any way of knowing what page (step) number in the multi-page form you are in? This is required for the funnel URLs.&#60;br /&#62;
Eg, like what I had with the jQuery hack:&#60;/p&#62;
&#60;p&#62;var funnel_url=&#34;/applications/loan-form?step=&#34;+(i+1);&#60;br /&#62;
_gaq.push(['_trackPageview',funnel_url]);&#60;/p&#62;
&#60;p&#62;Many thanks again!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "Multi-Page form question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multi-page-form-question#post-16852</link>
			<pubDate>Sat, 22 Jan 2011 10:12:46 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">16852@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Idealist, the javascript hooks is &#60;strong&#62;gform_page_loaded&#60;/strong&#62; and here is an example of it used to refresh Cufon fonts:&#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(document).bind(&#38;#39;gform_page_loaded&#38;#39;, function(){
            Cufon.refresh(&#38;#39;h1,h2,h3,h4,h5,h6&#38;#39;);
        });

    })
&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;In regards to the expected release of 1.5, we're busy wrapping up the last details of the plugin so it will be coming soon. Can't put a time frame on soon, but soon. :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>idealists on "Multi-Page form question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multi-page-form-question#post-16840</link>
			<pubDate>Sat, 22 Jan 2011 07:08:19 +0000</pubDate>
			<dc:creator>idealists</dc:creator>
			<guid isPermaLink="false">16840@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks David for taking your time to answer my questions. Can you point me in the direction of that hook that you refer too?&#60;/p&#62;
&#60;p&#62;Also when do you expect the stable release for 1.5 to be released APPROX? Next few days, next few weeks, next few months :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "Multi-Page form question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multi-page-form-question#post-16685</link>
			<pubDate>Thu, 20 Jan 2011 11:27:36 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">16685@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;1) There is an ajax option; however, I'm not sure that you will ever get it quite as instant as the single form, jquery option you shared. Each page has to be processed as it is submitted in order to handle validation in a simple and smooth fashion, to provide for conditional page logic, and some other features as well.&#60;/p&#62;
&#60;p&#62;2) Yes, you can update the text for the next/prev buttons: &#60;a href=&#34;http://grab.by/8ueo&#34; rel=&#34;nofollow&#34;&#62;http://grab.by/8ueo&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;3) Yes, you can style it similarly: &#60;a href=&#34;http://grab.by/8ufy&#34; rel=&#34;nofollow&#34;&#62;http://grab.by/8ufy&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;4) There is a javascript hook that you can use when a new page is loaded which you could use to tie in this same GA code.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>idealists on "Multi-Page form question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multi-page-form-question#post-16674</link>
			<pubDate>Thu, 20 Jan 2011 08:48:03 +0000</pubDate>
			<dc:creator>idealists</dc:creator>
			<guid isPermaLink="false">16674@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Oh, and one more question:&#60;/p&#62;
&#60;p&#62;4) Can this new integration for multipage forms work along with Google analytics, so when you traverse from page to page in a multi-page form, so that it records the page view in Google analytics.&#60;/p&#62;
&#60;p&#62;The URL in the hack version I mentioned in the previous post had a static URL no matter what step you were in, which meant you couldn't do goal/funnels in Analytics properly. However, I was able to add some javascript code to that hack which triggered pageviews being recorded in Analytics. Eg:&#60;br /&#62;
function selectStep(i) {&#60;br /&#62;
var funnel_url=&#34;/applications/loan-form?step=&#34;+(i+1);&#60;br /&#62;
_gaq.push(['_trackPageview',funnel_url]);&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;Hope that makes sense.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>idealists on "Multi-Page form question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multi-page-form-question#post-16673</link>
			<pubDate>Thu, 20 Jan 2011 08:25:58 +0000</pubDate>
			<dc:creator>idealists</dc:creator>
			<guid isPermaLink="false">16673@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi&#60;/p&#62;
&#60;p&#62;I have used the hack for jQuery form hack for multi page forms that was posted on here much earlier (&#60;a href=&#34;http://www.jankoatwarpspeed.com/post/2009/09/28/webform-wizard-jquery.aspx)&#34; rel=&#34;nofollow&#34;&#62;http://www.jankoatwarpspeed.com/post/2009/09/28/webform-wizard-jquery.aspx)&#60;/a&#62;. It split a regular form with javascript into a multi page form. I was fairly happy with the way that worked, except for it being a &#34;hack&#34;. &#60;/p&#62;
&#60;p&#62;I was very happy to see multi page integration into the latest version of gravityforms. I have yet to get it installed as my development PC is being repaired.&#60;/p&#62;
&#60;p&#62;A few questions I have.&#60;/p&#62;
&#60;p&#62;1)&#60;br /&#62;
I played with the example multi-page form (&#60;a href=&#34;http://www.rocketgenius.com/gravity-forms-1-5-multi-page-form-preview/)&#34; rel=&#34;nofollow&#34;&#62;http://www.rocketgenius.com/gravity-forms-1-5-multi-page-form-preview/)&#60;/a&#62;. It seems that after each page &#34;Continue to Next Page&#34; that it does some processing (back to the server) before proceeding to the next page.&#60;br /&#62;
I was hoping for a solution that held off from doing all server-side processing until it got past the final step &#34;Submit this application&#34; (illusion of being faster experience for the user). This would be similar to the jQuery hack I mention above.&#60;br /&#62;
Is this possible with the inbuilt solution?&#60;/p&#62;
&#60;p&#62;2)&#60;br /&#62;
Can we change the wording of the buttons?  &#34;Continue to Next Page&#34; to &#34;Next &#38;gt;&#34;  etc&#60;/p&#62;
&#60;p&#62;3)&#60;br /&#62;
Can we change the style of the process bar? I really liked the way the hack did it:&#60;br /&#62;
&#60;a href=&#34;http://www.jankoatwarpspeed.com/examples/webform_to_wizard/&#34; rel=&#34;nofollow&#34;&#62;http://www.jankoatwarpspeed.com/examples/webform_to_wizard/&#60;/a&#62; (click the link &#34;Click here to turn this webform into a wizrd.&#34;)&#60;br /&#62;
Step 1Account information&#60;br /&#62;
Step 2Company information&#60;br /&#62;
Step 3Billing information&#60;br /&#62;
Also at the top of each &#34;page&#34;, it indicates what Step you are up to, in big letters.&#60;/p&#62;
&#60;p&#62;I hope these are all possible as I would really love to move away from the hack.&#60;/p&#62;
&#60;p&#62;Many thanks! great work.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
