<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.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>THE MOLITOR FORUMS &#187; Topic: jquery library fails</title>
		<link>http://www.themolitor.com/forums/topic/jquery-library-fails</link>
		<description>THE MOLITOR FORUMS &#187; Topic: jquery library fails</description>
		<language>en-US</language>
		<pubDate>Tue, 28 Apr 2026 13:59:50 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.themolitor.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.themolitor.com/forums/rss/topic/jquery-library-fails" rel="self" type="application/rss+xml" />

		<item>
			<title>THE MOLITOR on "jquery library fails"</title>
			<link>http://www.themolitor.com/forums/topic/jquery-library-fails#post-31502</link>
			<pubDate>Thu, 23 Oct 2014 12:44:18 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">31502@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>You'll want to keep <code>jQuery.noConflict();</code> as that is required for not only the theme scripts but also for the script that you wrote. Without that, you'll need to use "<code>$</code>" instead of "<code>jQuery</code>".</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>morzar on "jquery library fails"</title>
			<link>http://www.themolitor.com/forums/topic/jquery-library-fails#post-31501</link>
			<pubDate>Thu, 23 Oct 2014 12:34:19 +0000</pubDate>
			<dc:creator>morzar</dc:creator>
			<guid isPermaLink="false">31501@http://www.themolitor.com/forums/</guid>
			<description><p>thank you for your quick support ;)</p>
<p>In fact I'm using a child theme to keep your work intact.</p>
<p>Puttin the code in the custom file doesn't change anything.<br />
But in noticed that the last line of the wordpress jquery (wp-includes/js/jquery/jquery.js) has:<br />
jQuery.noConflict();</p>
<p>When I remove, it works. But then, in the frontend parallaxpicture, i'm losing the "fadout to black" effect. This isn't obviously the way to do it, I should not alter this file.</p>
<p>I'm still investigating. If you have a spark, let me know ;)
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "jquery library fails"</title>
			<link>http://www.themolitor.com/forums/topic/jquery-library-fails#post-31500</link>
			<pubDate>Thu, 23 Oct 2014 12:27:19 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">31500@http://www.themolitor.com/forums/</guid>
			<description><p>Also, you forgot to close some of your elements...</p>
<p>This...</p>
<pre><code>jQuery(function () {
    jQuery(&#039;.showSingle&#039;).click(function () {
        var index = $(this).parent().index(),
            newTarget = jQuery(&#039;.targetDiv&#039;).eq(index);
        jQuery(&#039;.targetDiv&#039;).not(newTarget).slideUp(&#039;fast&#039;)
        newTarget.delay(&#039;fast&#039;).slideToggle(&#039;fast&#039;)
        return false;
    })
});</code></pre>
<p>...should look like this...</p>
<pre><code>jQuery(function () {
    jQuery(&#039;.showSingle&#039;).click(function () {
        var index = $(this).parent().index(),
            newTarget = jQuery(&#039;.targetDiv&#039;).eq(index);
        jQuery(&#039;.targetDiv&#039;).not(newTarget).slideUp(&#039;fast&#039;);
        newTarget.delay(&#039;fast&#039;).slideToggle(&#039;fast&#039;);
        return false;
    })
});</code></pre></description>
		</item>
		<item>
			<title>THE MOLITOR on "jquery library fails"</title>
			<link>http://www.themolitor.com/forums/topic/jquery-library-fails#post-31499</link>
			<pubDate>Thu, 23 Oct 2014 12:24:58 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">31499@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Try adding your jQuery to the custom.js file. Keep in mind, if you perform a theme update in the future, any edits to template files will be replaced. For this reason, be sure to make note of all your edits.</p>
<p>Let me know if that helps.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>morzar on "jquery library fails"</title>
			<link>http://www.themolitor.com/forums/topic/jquery-library-fails#post-31498</link>
			<pubDate>Thu, 23 Oct 2014 12:07:10 +0000</pubDate>
			<dc:creator>morzar</dc:creator>
			<guid isPermaLink="false">31498@http://www.themolitor.com/forums/</guid>
			<description><p>Hi,</p>
<p>I know this issue might not be your fault, but I'm having huge problems to make simple custom jquery code.</p>
<p>I see that the contractor renders this:<br />
<pre><code>&#60;script src=&#34;http://www.mysite.com/wp-includes/js/jquery/jquery.js?ver=1.11.1&#34; type=&#34;text/javascript&#34;&#62;
&#60;script src=&#34;http://www.mysite.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1&#34; type=&#34;text/javascript&#34;&#62;</code></pre>
<p>With that, i'm using this simple fiddle:<br />
<a href="http://jsfiddle.net/dusag/1/" rel="nofollow">http://jsfiddle.net/dusag/1/</a></p>
<p>It simply does not work.</p>
<p>But when I use the official jquery CDN:<br />
<pre><code>&#60;script type=&#34;text/javascript&#34; src=&#34;https://code.jquery.com/jquery-1.11.1.js&#34;&#62;&#60;/script&#62;
&#60;script type=&#34;text/javascript&#34; src=&#34;https://code.jquery.com/jquery-migrate-1.2.1.js&#34;&#62;&#60;/script&#62;</code></pre>
<p>It works. </p>
<p>this drives me mad... help... :)
</p></description>
		</item>

	</channel>
</rss>
