<?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: jquery in called in header</title>
		<link>https://legacy.forums.gravityhelp.com/topic/jquery-in-called-in-header</link>
		<description>Gravity Support Forums Topic: jquery in called in header</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 02:02:41 +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/jquery-in-called-in-header" rel="self" type="application/rss+xml" />

		<item>
			<title>Kevin Flahaut on "jquery in called in header"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-in-called-in-header#post-3932</link>
			<pubDate>Thu, 11 Mar 2010 20:45:21 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">3932@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Cool. I totally missed the plugin link too. I'll have to check it out. Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>orangeapple on "jquery in called in header"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-in-called-in-header#post-3931</link>
			<pubDate>Thu, 11 Mar 2010 20:14:11 +0000</pubDate>
			<dc:creator>orangeapple</dc:creator>
			<guid isPermaLink="false">3931@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Actually using the Google version is purely for speed purposes. It cuts down on the number or requests to a single server (which are limited by default on all browsers). Requesting it from goog does two things - one it's likely already been loaded prior to the visitor arriving so it won't be loaded again; two, as mentioned, its request isn't restricted by concurrent connection limitations of the browser.&#60;/p&#62;
&#60;p&#62;Basically, it's just good practice to keep the load times down. There are plenty of articles on this at the various design/dev blogs.&#60;/p&#62;
&#60;p&#62;Kevin, you'll notice in the link you gave me there is also &#60;a href=&#34;http://wordpress.org/extend/plugins/use-google-libraries/&#34; rel=&#34;nofollow&#34;&#62;WordPress plugin&#60;/a&#62; available to modify the enqueue jQuery to request the goog version. That was the easiest and most light weight to implement in my case.&#60;/p&#62;
&#60;p&#62;Ultimately my solution to this was pretty simple. I enabled that plugin and moved all of my calls below the wp_head. I guess I was just being stubborn and wanted it to load a specific way in the header. Problem solved.&#60;/p&#62;
&#60;ul&#62;
&#60;li&#62;&#60;a href=&#34;http://orangeapple.com/contact&#34; rel=&#34;nofollow&#34;&#62;http://orangeapple.com/contact&#60;/a&#62;&#60;/li&#62;
&#60;li&#62;&#60;a href=&#34;http://orangeapple.com/contact/project-form&#34; rel=&#34;nofollow&#34;&#62;http://orangeapple.com/contact/project-form&#60;/a&#62;&#60;/li&#62;
&#60;/ul&#62;
&#60;p&#62;&#60;strong&#62;Really can't thank you guys enough. Excellent plugin.&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;Personal twitter: &#60;a href=&#34;http://twitter.com/tenaciousJk&#34; rel=&#34;nofollow&#34;&#62;@tenaciousJk&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "jquery in called in header"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-in-called-in-header#post-3925</link>
			<pubDate>Thu, 11 Mar 2010 13:29:30 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">3925@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It looks like you're also loading the same version of jQuery that's packaged with WordPress so again, no real reason not to use the wp_enqueue_script method. It seems like you're going to end up making more work for yourself trying to go around the built in method.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "jquery in called in header"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-in-called-in-header#post-3924</link>
			<pubDate>Thu, 11 Mar 2010 12:22:44 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">3924@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;There isn't currently a filter for this that I am aware of, but I will look at it.&#60;/p&#62;
&#60;p&#62;Any reason you calling jQuery from Google instead of using WordPress built in jQuery? &#60;/p&#62;
&#60;p&#62;You could run into this same issue with other plugins that automatically enqueue jQuery as enqueue only works with scripts called via enqueueue... it can't tell that jQuery is already included if it's called externally.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>orangeapple on "jquery in called in header"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-in-called-in-header#post-3898</link>
			<pubDate>Wed, 10 Mar 2010 17:09:40 +0000</pubDate>
			<dc:creator>orangeapple</dc:creator>
			<guid isPermaLink="false">3898@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Carl,&#60;/p&#62;
&#60;p&#62;Can I remove the Gravity function that enques it if needed via my functions.php? jQuery is loaded on every page by default.&#60;/p&#62;
&#60;p&#62;Think you could fill in the blanks for me here?&#60;/p&#62;
&#60;p&#62;&#60;code&#62;remove_action()&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "jquery in called in header"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-in-called-in-header#post-3892</link>
			<pubDate>Wed, 10 Mar 2010 16:20:03 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">3892@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can always use the built in wp_enqueue_script functionality to call jQuery rather than manually trying to include it. That way, there shouldn't be conflicts or problems with jQuery being called twice.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://digwp.com/2009/06/including-jquery-in-wordpress-the-right-way/&#34; rel=&#34;nofollow&#34;&#62;http://digwp.com/2009/06/including-jquery-in-wordpress-the-right-way/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "jquery in called in header"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-in-called-in-header#post-3890</link>
			<pubDate>Wed, 10 Mar 2010 16:04:26 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">3890@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Gravity Forms enqueues the WordPress built in jQuery and relies on it to function.  That is why it is only appearing on pages where a Gravity Form is present.  I'm not sure if there is a solution to this right now short of editing the gravityforms plugin files to remove the enqueue call which calls in jquery.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>orangeapple on "jquery in called in header"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-in-called-in-header#post-3879</link>
			<pubDate>Wed, 10 Mar 2010 07:51:40 +0000</pubDate>
			<dc:creator>orangeapple</dc:creator>
			<guid isPermaLink="false">3879@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have the jQuery library called from Google earlier in my pages, then there's another version added that conflicts with other elements on the page.&#60;/p&#62;
&#60;p&#62;I went through the code, but couldn't find where it was being called. I really didn't think that it was part of your code except that it only shows up if there is a Gravity form on that page.&#60;/p&#62;
&#60;p&#62;For sake of being thorough:&#60;/p&#62;
&#60;p&#62;This is what I am calling above wp_head:&#60;br /&#62;
&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;quot; src=&#38;quot;http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;This is what shows up on both of my Gravity Form pages (and no others) as a result of the wp_head call:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;#39;text/javascript&#38;#39; src=&#38;#39;http://DOMAIN/wp-includes/js/jquery/jquery.js?ver=1.3.2&#38;#39;&#38;gt;&#38;lt;/script&#38;gt;
&#38;lt;script type=&#38;#39;text/javascript&#38;#39; src=&#38;#39;http://DOMAIN/wp-content/plugins/gravityforms/js/conditional_logic.js?ver=1.3.10&#38;#39;&#38;gt;&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>

	</channel>
</rss>
