<?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: Conditional Logic JavaScript conflict</title>
		<link>https://legacy.forums.gravityhelp.com/topic/conditional-logic-javascript-conflict</link>
		<description>Gravity Support Forums Topic: Conditional Logic JavaScript conflict</description>
		<language>en-US</language>
		<pubDate>Tue, 21 Apr 2026 18:30:20 +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/conditional-logic-javascript-conflict" rel="self" type="application/rss+xml" />

		<item>
			<title>Richard Vav on "Conditional Logic JavaScript conflict"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/conditional-logic-javascript-conflict#post-174309</link>
			<pubDate>Sun, 17 Mar 2013 13:20:30 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">174309@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I would guess moving jQuery to the header solved his issue, I have heard of people have problems when it is included in the footer because Gravity Forms generally includes it's scripts in the header and they depend on jQuery being loaded before them to function.  That may not be the case with future versions though as I believe they are considering providing an option to enable loading the scripts in the footer.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ricardo on "Conditional Logic JavaScript conflict"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/conditional-logic-javascript-conflict#post-174072</link>
			<pubDate>Sun, 17 Mar 2013 02:14:36 +0000</pubDate>
			<dc:creator>Ricardo</dc:creator>
			<guid isPermaLink="false">174072@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Mind letting us mere mortals know what you did to get this working?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Conditional Logic JavaScript conflict"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/conditional-logic-javascript-conflict#post-173134</link>
			<pubDate>Sat, 16 Mar 2013 03:48:55 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">173134@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Glad to here you got it working
&#60;/p&#62;</description>
		</item>
		<item>
			<title>GoForJacob on "Conditional Logic JavaScript conflict"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/conditional-logic-javascript-conflict#post-172709</link>
			<pubDate>Fri, 15 Mar 2013 21:23:04 +0000</pubDate>
			<dc:creator>GoForJacob</dc:creator>
			<guid isPermaLink="false">172709@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Nevermind, I got it working! Thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>GoForJacob on "Conditional Logic JavaScript conflict"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/conditional-logic-javascript-conflict#post-172593</link>
			<pubDate>Fri, 15 Mar 2013 17:52:33 +0000</pubDate>
			<dc:creator>GoForJacob</dc:creator>
			<guid isPermaLink="false">172593@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I did that and even moved the other calls to external JS below the wp_footer to ensure they'd load after jquery, and now nothing works on the site as far as JS is concerned. &#60;/p&#62;
&#60;p&#62;I'm also getting these errors:  'undefined' is not a function (evaluating '$(window)')&#60;/p&#62;
&#60;p&#62;I'm guessing that's because jQuery is working in noconflict mode now? Any idea how to get around that one?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Conditional Logic JavaScript conflict"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/conditional-logic-javascript-conflict#post-172087</link>
			<pubDate>Fri, 15 Mar 2013 05:44:57 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">172087@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You are including jQuery in the footer twice, version 1.9 from google and version 1.8.3 from local, please remove the following google call and see if that makes any difference, there have been a few problems reported with jQuery 1.9 and Gravity Forms&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script src=&#38;quot;//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>GoForJacob on "Conditional Logic JavaScript conflict"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/conditional-logic-javascript-conflict#post-171718</link>
			<pubDate>Fri, 15 Mar 2013 00:05:25 +0000</pubDate>
			<dc:creator>GoForJacob</dc:creator>
			<guid isPermaLink="false">171718@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I've embeded the form in my template and put the gravity_form_enqueue_scripts function in the header. When I do that, the form works properly, using conditional logic, but the jQuery on the rest of my site doesn't work. When I take the function out, the conditional logic ceases to work, but the rest of the sites' scripts do.&#60;/p&#62;
&#60;p&#62;I've tried hardcoding the header and form code for conditional logic, thinking it was a duplicate of jquery.min.js causing the problem, but that doesn't work either.&#60;/p&#62;
&#60;p&#62;The URL I'm working at is &#60;a href=&#34;http://mobilemissionshop.com/&#34; rel=&#34;nofollow&#34;&#62;http://mobilemissionshop.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The form is in the bottom right-hand corner with a &#34;+&#34; on the top. It's styled like a Qualaroo form.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
