<?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: Enqueue jQuery with CDN and in the footer causing AJAX errors/spinner error</title>
		<link>https://legacy.forums.gravityhelp.com/topic/enqueue-jquery-with-cdn-and-in-the-footer-causing-ajax-errorsspinner-error</link>
		<description>Gravity Support Forums Topic: Enqueue jQuery with CDN and in the footer causing AJAX errors/spinner error</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 08:07:07 +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/enqueue-jquery-with-cdn-and-in-the-footer-causing-ajax-errorsspinner-error" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Enqueue jQuery with CDN and in the footer causing AJAX errors/spinner error"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/enqueue-jquery-with-cdn-and-in-the-footer-causing-ajax-errorsspinner-error#post-122612</link>
			<pubDate>Tue, 15 Jan 2013 13:35:22 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">122612@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@emixfr, are you having trouble with a form or are you just providing feedback regarding how the JavaScript is being loaded?  If you're having trouble with a form, please provide a link to the form in a new topic with a description of your problem.  Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>emixfr on "Enqueue jQuery with CDN and in the footer causing AJAX errors/spinner error"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/enqueue-jquery-with-cdn-and-in-the-footer-causing-ajax-errorsspinner-error#post-122581</link>
			<pubDate>Tue, 15 Jan 2013 12:52:02 +0000</pubDate>
			<dc:creator>emixfr</dc:creator>
			<guid isPermaLink="false">122581@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It would be nice to find a way.&#60;br /&#62;
some other plugin like contact form 7 don't need to load jquery in top&#60;br /&#62;
Can't you just display the script after the WP_footer hook ? jquery would be loaded before in all case.&#60;br /&#62;
the javascript code doesn't need to be just after the form html to work well.&#60;/p&#62;
&#60;p&#62;thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Enqueue jQuery with CDN and in the footer causing AJAX errors/spinner error"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/enqueue-jquery-with-cdn-and-in-the-footer-causing-ajax-errorsspinner-error#post-46072</link>
			<pubDate>Tue, 10 Jan 2012 21:58:24 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">46072@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;jQuery needs to be loaded in the header so it's available to Gravity Forms when the page renders.  There is currently no way around that but we are always evaluating best practices and will think carefully about the best way to accomplish this.  Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>o3world on "Enqueue jQuery with CDN and in the footer causing AJAX errors/spinner error"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/enqueue-jquery-with-cdn-and-in-the-footer-causing-ajax-errorsspinner-error#post-45893</link>
			<pubDate>Mon, 09 Jan 2012 15:10:52 +0000</pubDate>
			<dc:creator>o3world</dc:creator>
			<guid isPermaLink="false">45893@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Did some more research and found this topic:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/submit-validation#post-42771&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/submit-validation#post-42771&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;It seems that jQuery needs to be loaded in the header, is there any way around this? Obviously best practice for Javascript is to load in the footer, not sure why Gravity Forms would break that standard...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>o3world on "Enqueue jQuery with CDN and in the footer causing AJAX errors/spinner error"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/enqueue-jquery-with-cdn-and-in-the-footer-causing-ajax-errorsspinner-error#post-45888</link>
			<pubDate>Mon, 09 Jan 2012 13:34:14 +0000</pubDate>
			<dc:creator>o3world</dc:creator>
			<guid isPermaLink="false">45888@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm loading jQuery in the footer and with Google's CDN and its causing the AJAX loader and errors to not appear. Thoughts?&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function ps_load_jquery_footer() {
	if ( !is_admin() ) {
		wp_deregister_script( &#38;#39;jquery&#38;#39; );
		wp_register_script( &#38;#39;jquery&#38;#39;, get_template_directory_uri() . &#38;quot;/js/jquery-1.7.1.min.js&#38;quot;, false, &#38;#39;1.7.1&#38;#39;, true );
		wp_enqueue_script( &#38;#39;jquery&#38;#39; );
	}
}
add_action(&#38;#39;init&#38;#39;, &#38;#39;ps_load_jquery_footer&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
		</item>

	</channel>
</rss>
