<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>ThemeShaper Forums Topic: Themaic jQuery conficts with anything else I try to do.</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Sat, 18 May 2013 21:36:56 +0000</pubDate>

<item>
<title>kga on "Themaic jQuery conficts with anything else I try to do."</title>
<link>http://themeshaper.com/forums/topic/themaic-jquery-conficts-with-anything-else-i-try-to-do#post-23542</link>
<pubDate>Fri, 21 Oct 2011 04:18:46 +0000</pubDate>
<dc:creator>kga</dc:creator>
<guid isPermaLink="false">23542@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Update. I moved on to another modal plugin, which does actually load, but now there is another conflict with jQuery, again (this plugin integrates with Contact Form 7 - when you hit the &#34;submit&#34; button to send the message, the screen goes blank, which according to the developer, is a jQuery conflict.&#60;/p&#62;
&#60;p&#62;What the hell? Does Thematic conflict with every other jQuery-based plugin or feature? In general, how do you stop this or prevent it?
&#60;/p&#62;</description>
</item>
<item>
<title>kga on "Themaic jQuery conficts with anything else I try to do."</title>
<link>http://themeshaper.com/forums/topic/themaic-jquery-conficts-with-anything-else-i-try-to-do#post-23534</link>
<pubDate>Thu, 20 Oct 2011 16:28:24 +0000</pubDate>
<dc:creator>kga</dc:creator>
<guid isPermaLink="false">23534@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Helga,&#60;/p&#62;
&#60;p&#62;1) It looks like #md-content, but if you look at the source code all around it, there is a lot going on.&#60;/p&#62;
&#60;p&#62;2) I tried that before and it did not work (you actually helped on it). I just now combined them again and they seem fine. &#60;/p&#62;
&#60;p&#62;3) Yes - &#34;Modal Dialog&#34;
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Themaic jQuery conficts with anything else I try to do."</title>
<link>http://themeshaper.com/forums/topic/themaic-jquery-conficts-with-anything-else-i-try-to-do#post-23527</link>
<pubDate>Thu, 20 Oct 2011 04:29:47 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23527@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;1. i looked in the markup and i can't find anything that looks like it would be a modal.  what is the content of the modal window?  the div id?&#60;/p&#62;
&#60;p&#62;2.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
	//&#38;lt;![CDATA[

	jQuery.noConflict();
	jQuery(document).ready(function($) { //tells WP to recognize the $ variable

	//paste your jquery code here

	//Hide (Collapse) the toggle containers on load
	$(&#38;quot;.answerextension&#38;quot;).hide(); 

	//Switch the &#38;quot;Open&#38;quot; and &#38;quot;Close&#38;quot; state per click
	$(&#38;quot;h2.moreinfo&#38;quot;).toggle(function(){
		$(this).addClass(&#38;quot;active&#38;quot;);
		}, function () {
		$(this).removeClass(&#38;quot;active&#38;quot;);
	});

	//Slide up and down on click
	$(&#38;quot;h2.moreinfo&#38;quot;).click(function(){
		$(this).next(&#38;quot;.answerextension&#38;quot;).slideToggle(&#38;quot;fast&#38;quot;);
	});

});

$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(&#38;quot;.answer&#38;quot;).hide(); 

	//Switch the &#38;quot;Open&#38;quot; and &#38;quot;Close&#38;quot; state per click
	$(&#38;quot;h2.question&#38;quot;).toggle(function(){
		$(this).addClass(&#38;quot;active&#38;quot;);
		}, function () {
		$(this).removeClass(&#38;quot;active&#38;quot;);
	});

	//Slide up and down on click
	$(&#38;quot;h2.question&#38;quot;).click(function(){
		$(this).next(&#38;quot;.answer&#38;quot;).slideToggle(&#38;quot;fast&#38;quot;);
	});

});

$(document).ready(function (){
	$(&#38;#39;#crossfader_nav a&#38;#39;).click(function(){
		var integer = $(this).attr(&#38;#39;rel&#38;#39;);
		$(&#38;#39;#crossfader .cover&#38;#39;).css({left:-775*(parseInt(integer)-1)}).hide().fadeIn(500);
		$(&#38;#39;#crossfader_nav a&#38;#39;).each(function(){
		$(this).removeClass(&#38;#39;active&#38;#39;);
			if($(this).hasClass(&#38;#39;button&#38;#39;+integer)){
				$(this).addClass(&#38;#39;active&#38;#39;)}
		});
	});
});

	}); //end document ready functions

	/* ]]&#38;gt; */
	&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;i dont see anything in there for the modal window, but it is all sort of messed up. &#60;/p&#62;
&#60;p&#62;some of your //comments look like you referenced by post on jquery, but where it says to paste your jquery, you don't paste the document.ready bit again.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;jQuery(document).ready(function($) { //tells WP to recognize the $ variable

  //paste your jquery code here
  $(document).ready(function(){&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;delete that $(document) line and combine everything into the one document.ready block&#60;/p&#62;
&#60;p&#62;3. is the modal generated by a plugin?
&#60;/p&#62;</description>
</item>
<item>
<title>kga on "Themaic jQuery conficts with anything else I try to do."</title>
<link>http://themeshaper.com/forums/topic/themaic-jquery-conficts-with-anything-else-i-try-to-do#post-23525</link>
<pubDate>Thu, 20 Oct 2011 03:31:44 +0000</pubDate>
<dc:creator>kga</dc:creator>
<guid isPermaLink="false">23525@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Well, it does not work at all; that's the problem. &#60;/p&#62;
&#60;p&#62;The modal overlay should appear front-and-center within one second, on any page. &#60;/p&#62;
&#60;p&#62;When I deactivate Thematic, it works fine. It has to be something brought in from Thematic.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Themaic jQuery conficts with anything else I try to do."</title>
<link>http://themeshaper.com/forums/topic/themaic-jquery-conficts-with-anything-else-i-try-to-do#post-23524</link>
<pubDate>Wed, 19 Oct 2011 17:33:31 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23524@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;how do i launch a modal to see the conflict?  nothing shows in console on load.
&#60;/p&#62;</description>
</item>
<item>
<title>kga on "Themaic jQuery conficts with anything else I try to do."</title>
<link>http://themeshaper.com/forums/topic/themaic-jquery-conficts-with-anything-else-i-try-to-do#post-23522</link>
<pubDate>Wed, 19 Oct 2011 15:03:13 +0000</pubDate>
<dc:creator>kga</dc:creator>
<guid isPermaLink="false">23522@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I need to install a modal plugin - I've tried many - none work. Once I deactivate Thematic and just go to the stock 2011 theme, they work fine.&#60;/p&#62;
&#60;p&#62;Site in question:&#60;br /&#62;
&#60;a href=&#34;http://fasstco.kgaspeedmedia.com/&#34; rel=&#34;nofollow&#34;&#62;http://fasstco.kgaspeedmedia.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;How do I get around this / fix the conflict? &#60;/p&#62;
&#60;p&#62;As you can see, I'm trying to get a plugin Easy Modal to work.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
