<?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: Fake progress bar popup on button click</title>
		<link>https://legacy.forums.gravityhelp.com/topic/fake-progress-bar-popup-on-button-click</link>
		<description>Gravity Support Forums Topic: Fake progress bar popup on button click</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 10:11:40 +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/fake-progress-bar-popup-on-button-click" rel="self" type="application/rss+xml" />

		<item>
			<title>Rob Harrell on "Fake progress bar popup on button click"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fake-progress-bar-popup-on-button-click#post-49995</link>
			<pubDate>Mon, 20 Feb 2012 14:14:07 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">49995@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Try this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;

jQuery.noConflict();
  jQuery(document).ready(function($) {
  		$(&#38;quot;.gform_wrapper&#38;quot;).after(&#38;quot;&#38;lt;div id=&#38;#39;fakeprogress&#38;#39;&#38;gt;&#38;lt;h2&#38;gt;Uploading Files.. Please Wait&#38;lt;/h2&#38;gt;&#38;lt;/div&#38;gt;&#38;quot;);
  		$(&#38;quot;#fakeprogress&#38;quot;).hide();
		$(&#38;quot;.gform_footer input.button&#38;quot;).click(function () {
   			$(&#38;quot;#fakeprogress&#38;quot;).delay(1000).show(&#38;#39;slow&#38;#39;);
		});
  });
&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>growe19 on "Fake progress bar popup on button click"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fake-progress-bar-popup-on-button-click#post-49585</link>
			<pubDate>Thu, 16 Feb 2012 09:16:03 +0000</pubDate>
			<dc:creator>growe19</dc:creator>
			<guid isPermaLink="false">49585@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hey Rob, tried it and refreshed and still no luck. Have also tried changing the javascript a little. Still no joy.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;jQuery.noConflict();
  jQuery(document).ready(function($) {

  		$(&#38;quot;.gform_wrapper).after(&#38;quot;&#38;lt;div id=&#38;#39;fakeprogress&#38;#39;&#38;gt;&#38;lt;h2&#38;gt;Uploading Files.. Please Wait&#38;lt;/h2&#38;gt;&#38;lt;/div&#38;gt;&#38;quot;);
  		$(&#38;quot;.fakeprogress&#38;quot;).hide();
		$(&#38;quot;.gform_footer input.button&#38;quot;).click(function () {
   			$(&#38;quot;.fakeprogress&#38;quot;).delay(3000).show(&#38;#39;slow&#38;#39;);
		});	

  });&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Fake progress bar popup on button click"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fake-progress-bar-popup-on-button-click#post-48959</link>
			<pubDate>Thu, 09 Feb 2012 22:08:05 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">48959@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;In your style.css you have references to #fakeprogress, but in your javascript you are labeling it as a class=&#34;fakeprogress&#34;. Try changing the class='fakeprogress' to id='fakeprogress' in your javascript and see if that works out.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>growe19 on "Fake progress bar popup on button click"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fake-progress-bar-popup-on-button-click#post-48828</link>
			<pubDate>Thu, 09 Feb 2012 10:26:56 +0000</pubDate>
			<dc:creator>growe19</dc:creator>
			<guid isPermaLink="false">48828@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Yep, sorry. &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://garyrowe.co.uk/swiftprintuk3/store/posters/gloss-200gsm-a0/&#34; rel=&#34;nofollow&#34;&#62;http://garyrowe.co.uk/swiftprintuk3/store/posters/gloss-200gsm-a0/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Fake progress bar popup on button click"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fake-progress-bar-popup-on-button-click#post-48826</link>
			<pubDate>Thu, 09 Feb 2012 09:54:47 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">48826@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Do you have a link to your form? I assume you tried the class method rather than the ID so you could target all of your forms? We would need something to look at to try to see what's not working properly or to offer any kind of guidance.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>growe19 on "Fake progress bar popup on button click"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fake-progress-bar-popup-on-button-click#post-48823</link>
			<pubDate>Thu, 09 Feb 2012 09:07:45 +0000</pubDate>
			<dc:creator>growe19</dc:creator>
			<guid isPermaLink="false">48823@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Kevin Flahaut greatly explains how to make a fake progress bar popup in this thread:&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/add-a-file-upload-progress-bar&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/add-a-file-upload-progress-bar&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;However I would like to make the popup appear on all gravity forms button clicks.&#60;/p&#62;
&#60;p&#62;The code at the bottom of that locked thread doesn't work. And you can't add over 100 scripts into the header for each and every gravity forms button ID.&#60;/p&#62;
&#60;p&#62;How is this possible?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
G
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
