<?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 working in Firefox but not Safari</title>
		<link>https://legacy.forums.gravityhelp.com/topic/fake-progress-bar-working-in-firefox-but-not-safari</link>
		<description>Gravity Support Forums Topic: Fake progress bar working in Firefox but not Safari</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 18:40: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/fake-progress-bar-working-in-firefox-but-not-safari" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Fake progress bar working in Firefox but not Safari"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fake-progress-bar-working-in-firefox-but-not-safari#post-112984</link>
			<pubDate>Thu, 03 Jan 2013 07:47:28 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">112984@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Please update the topic after you have fixed these issues.  Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ShayneOL on "Fake progress bar working in Firefox but not Safari"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fake-progress-bar-working-in-firefox-but-not-safari#post-112738</link>
			<pubDate>Thu, 03 Jan 2013 00:38:33 +0000</pubDate>
			<dc:creator>ShayneOL</dc:creator>
			<guid isPermaLink="false">112738@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Chris, thanks so much for the response. I will work on resolving these errors and see if it works.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Fake progress bar working in Firefox but not Safari"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fake-progress-bar-working-in-firefox-but-not-safari#post-112348</link>
			<pubDate>Wed, 02 Jan 2013 07:37:13 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">112348@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Every browser responds to invalid HTML and JavaScript errors in different ways.  It's likely the trouble you are having is related to the invalid HTML and JavaScript errors on your page.  Here is the JavaScript error:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;Timestamp: 1/2/2013 5:32:58 AM
Error: ReferenceError: Tippy is not defined
Source File: &#60;a href=&#34;http://wordinmotion.com/01test&#34; rel=&#34;nofollow&#34;&#62;http://wordinmotion.com/01test&#60;/a&#62;
Line: 56&#60;/code&#62;&#60;/pre&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
	Tippy.tipPosition = &#38;quot;link&#38;quot;;
	Tippy.tipOffsetX = 0;
	Tippy.tipOffsetY = 10;
	Tippy.fadeRate = 300;
	Tippy.sticky = false;
	Tippy.showClose = true;
&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And the invalid HTML you have is jQuery for your fake progress bar being output before the beginning of the page.  Here are the first few lines of the source of the page you referenced:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script src=&#38;quot;http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js&#38;quot; type=&#38;quot;text/javascript&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;
&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
jQuery.noConflict();
  jQuery(document).ready(function($) {

  		$(&#38;quot;#gform_wrapper_3&#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_wrapper_3 .gform_footer input&#38;quot;).click(function () {
   			$(&#38;quot;#fakeprogress&#38;quot;).delay(3000).show(&#38;#39;slow&#38;#39;);
		});	

  });
&#38;lt;/script&#38;gt;

 &#38;lt;!DOCTYPE html PUBLIC &#38;quot;-//W3C//DTD XHTML 1.0 Strict//EN&#38;quot; &#38;quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#38;quot;&#38;gt;
&#38;lt;html xmlns=&#38;quot;http://www.w3.org/1999/xhtml&#38;quot; dir=&#38;quot;ltr&#38;quot; lang=&#38;quot;en-US&#38;quot;&#38;gt;
    &#38;lt;head&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can't have all that before the beginning of the page.  Please revise your method to include the progress bar script properly inside the page. &#60;/p&#62;
&#60;p&#62;You also have jQuery referenced at least twice in the page.  Here is the second time (coming from a plugin I think):&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#60;a href=&#34;http://wordinmotion.com/wp-content/plugins/slider-pro/js/jquery-1.6.2.min.js?ver=3.2.1&#34; rel=&#34;nofollow&#34;&#62;http://wordinmotion.com/wp-content/plugins/slider-pro/js/jquery-1.6.2.min.js?ver=3.2.1&#60;/a&#62;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>ShayneOL on "Fake progress bar working in Firefox but not Safari"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fake-progress-bar-working-in-firefox-but-not-safari#post-112185</link>
			<pubDate>Wed, 02 Jan 2013 00:12:00 +0000</pubDate>
			<dc:creator>ShayneOL</dc:creator>
			<guid isPermaLink="false">112185@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello,&#60;br /&#62;
I'm having the same issue here.  The fake progress bar doesn't work in Safari for OSX.  It does, however, work for Firefox &#38;amp; Google Chrome (OSX).  I also got it working for Safari, IE, Firefox (PC).  All of the browsers that I've used are updated to the most recent versions.&#60;/p&#62;
&#60;p&#62;The test form that I'm using is located at the following address:&#60;br /&#62;
&#60;a href=&#34;http://wordinmotion.com/01test&#34; rel=&#34;nofollow&#34;&#62;http://wordinmotion.com/01test&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The PHP and CSS code is below.  Any help is appreciated.&#60;/p&#62;
&#60;p&#62;&#60;u&#62;CSS&#60;/u&#62;&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#fakeprogress {
	background-color:#ceecff;
	border:2px solid #ADDEFC;
	background-image:url(http://www.wordinmotion.com/wp-content/themes/rockwell_v1.7.1/skins/white/gfx/ajax-loader.gif);
	background-repeat:no-repeat;
	background-position:center 65px;
	height:120px;
	width:400px;
	position:absolute;
	top:50%;
	left:50%;
	margin-top:-60px;
	margin-left:-200px;
	z-index:100;
}
#fakeprogress h2 {
	text-align:center;
	margin:0;
	padding:25px 0 0 0;
	font-weight:bold;
	font-size:24px;
	font-family:sans-serif;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;u&#62;Javascript&#60;/u&#62;&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script src=&#38;quot;http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js&#38;quot; type=&#38;quot;text/javascript&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;
&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
jQuery.noConflict();
  jQuery(document).ready(function($) {

  		$(&#38;quot;#gform_wrapper_3&#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_wrapper_3 .gform_footer input&#38;quot;).click(function () {
   			$(&#38;quot;#fakeprogress&#38;quot;).delay(3000).show(&#38;#39;slow&#38;#39;);
		});	

  });
&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Fake progress bar working in Firefox but not Safari"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fake-progress-bar-working-in-firefox-but-not-safari#post-80903</link>
			<pubDate>Sun, 14 Oct 2012 18:59:17 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">80903@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi thank you for this.  I see the CSS now which affects this (in skin.css):&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
#fakeprogress {
	background-color:#ceecff;
	border:2px solid #ADDEFC;
	background-image:url(http://fluidframe.com.au/wp/wp-content/uploads/2012/09/ajax-loader-1.gif);
	background-repeat:no-repeat;
	background-position:center 65px;
	height:120px;
	width:400px;
	position:absolute;
	top:50%;
	left:50%;
	margin-top:700px;
	margin-left:-200px;
	z-index:100;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;It's difficult for me to make local changes and have them persist after submitting, where I need to see the change in the position.  I think I would begin by removing the margin-top and margin-left and see what happens. 	top:50%; and	left:50%; are already defined.  There are quite a few positioning rules here.  I would remove them all and see where the fakeprogress ends up, then add styles back in to see where it ends up.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jwb391 on "Fake progress bar working in Firefox but not Safari"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fake-progress-bar-working-in-firefox-but-not-safari#post-80291</link>
			<pubDate>Thu, 11 Oct 2012 07:43:27 +0000</pubDate>
			<dc:creator>jwb391</dc:creator>
			<guid isPermaLink="false">80291@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;OK sorry.  While I have help I am trying to get it all sorted! :)&#60;/p&#62;
&#60;p&#62;Here is the code link:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://pastie.org/5034645&#34; rel=&#34;nofollow&#34;&#62;http://pastie.org/5034645&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Please note I have put more than 1 wrapper in as I am trying to get it working on the 3 forms&#60;/p&#62;
&#60;p&#62;Thank you for your help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Fake progress bar working in Firefox but not Safari"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fake-progress-bar-working-in-firefox-but-not-safari#post-80289</link>
			<pubDate>Thu, 11 Oct 2012 07:30:50 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">80289@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Let's stick to one issue at a time please. We can address clearing the cache and your other question about changing the button ID separately.&#60;/p&#62;
&#60;p&#62;Can you post the code you are using for the fake progress bar? Please use pastie.org or pastebin.com.  Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jwb391 on "Fake progress bar working in Firefox but not Safari"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fake-progress-bar-working-in-firefox-but-not-safari#post-80288</link>
			<pubDate>Thu, 11 Oct 2012 07:27:18 +0000</pubDate>
			<dc:creator>jwb391</dc:creator>
			<guid isPermaLink="false">80288@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The screenshot of Firefox is here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;https://www.dropbox.com/s/qi3irjanhpej0gu/Screen%20Shot%202012-10-11%20at%2010.35.46%20AM.png&#34; rel=&#34;nofollow&#34;&#62;https://www.dropbox.com/s/qi3irjanhpej0gu/Screen%20Shot%202012-10-11%20at%2010.35.46%20AM.png&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;This is where I would like the image to load in all of the browsers.  &#60;/p&#62;
&#60;p&#62;Also is there a way to clear the cache automatically from a browser as if customers go back to order another photo, the fake progress image will not display again?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Fake progress bar working in Firefox but not Safari"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fake-progress-bar-working-in-firefox-but-not-safari#post-80264</link>
			<pubDate>Thu, 11 Oct 2012 06:31:56 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">80264@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;To post a screenshot, please capture it on your computer then use one of the free image hosting services, and paste the link here so we can check it out.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jwb391 on "Fake progress bar working in Firefox but not Safari"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fake-progress-bar-working-in-firefox-but-not-safari#post-80199</link>
			<pubDate>Wed, 10 Oct 2012 19:33:50 +0000</pubDate>
			<dc:creator>jwb391</dc:creator>
			<guid isPermaLink="false">80199@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi I don't know how to post a screenshot here taken in Firefox, and the fake upload image  doesn't appear in Safari&#60;/p&#62;
&#60;p&#62;I wanted it to appear as close to the Next button at the bottom of the page on each form.  But as the forms are different lengths I thought there could be another way of positioning rather than absolute so it moves dynamically.&#60;/p&#62;
&#60;p&#62;This way while the user has their screen scrolled down to the bottom of the form they will always see the fake progress image appear.  Does that make sense?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
