<?xml version="1.0"?>
<rss version="2.0">
	<channel>
		<title>Page comments</title>
		<link>http://www.ssbits.com/home/</link>
		

		
		<item>
			<title>Comment by 'ignacio rodriguez' on jQuery Expanding Menu Plugin</title>
			<link>http://www.ssbits.com/jquery-expanding-menu-plugin/#PageComment_667</link>
			<description>has anyone been successful in implementing this solution into ss - i've been trying with no success...</description>
			<pubDate>Thu, 20 May 2010 07:53:34 -0500</pubDate>
			<author>ignacio rodriguez</author>
			<guid>http://www.ssbits.com/jquery-expanding-menu-plugin/#PageComment_667</guid>
		</item>
		
		<item>
			<title>Comment by 'Luke' on jQuery Expanding Menu Plugin</title>
			<link>http://www.ssbits.com/jquery-expanding-menu-plugin/#PageComment_565</link>
			<description>Is there a simple way to modify this menu so that only one section can be open at the a time?  i.e. clicking a 2nd section would close the first and open the second at the same time?
Thanks!</description>
			<pubDate>Thu, 04 Feb 2010 17:26:49 -0600</pubDate>
			<author>Luke</author>
			<guid>http://www.ssbits.com/jquery-expanding-menu-plugin/#PageComment_565</guid>
		</item>
		
		<item>
			<title>Comment by 'mike' on jQuery Expanding Menu Plugin</title>
			<link>http://www.ssbits.com/jquery-expanding-menu-plugin/#PageComment_555</link>
			<description>Hi Aram. Like the way your script looks and works - was wondering if you have any further information on integrating it with SilverStripe navigation through the CMS (&quot;tutorial to follow&quot;)?</description>
			<pubDate>Wed, 20 Jan 2010 21:18:49 -0600</pubDate>
			<author>mike</author>
			<guid>http://www.ssbits.com/jquery-expanding-menu-plugin/#PageComment_555</guid>
		</item>
		
		<item>
			<title>Comment by 'mathiasmex' on jQuery Expanding Menu Plugin</title>
			<link>http://www.ssbits.com/jquery-expanding-menu-plugin/#PageComment_537</link>
			<description>Thanks to Aram and specially to Dave Berry.
Used this to include like toggle containers in site content and works like a charme.</description>
			<pubDate>Tue, 29 Dec 2009 14:32:25 -0600</pubDate>
			<author>mathiasmex</author>
			<guid>http://www.ssbits.com/jquery-expanding-menu-plugin/#PageComment_537</guid>
		</item>
		
		<item>
			<title>Comment by 'Dave Berry' on jQuery Expanding Menu Plugin</title>
			<link>http://www.ssbits.com/jquery-expanding-menu-plugin/#PageComment_503</link>
			<description>I have done this with several silverstripe sites that I have done. Its actually quite easy.

The two js files in the zip file put into your /mysite/javascript folder
inside that same folder create a new js file (I called mine expandCustom.js) and put the following in it: 
jQuery(document).ready(function() {
	
	jQuery.noConflict();
	
	jQuery('.holder').ExpandingMenu({
		speed: &quot;slow&quot;,
		colorFade : false,
		colorClosed: &quot;#5888a6&quot;,
		colorOpen: &quot;#5888a6&quot;,
		event : &quot;click&quot;
	});
});

/mysite/code/Page.php add the following includes
Requirements::javascript(&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js&quot;); // you will need this line if you haven't included jquery before
Requirements::javascript(&quot;mysite/javascript/jquery.color.fade.js&quot;);
Requirements::javascript(&quot;mysite/javascript/jquery.expanding.menu.js&quot;);
Requirements::javascript(&quot;mysite/javascript/expandCustom.js&quot;);

then on the necessary ss page(s) use your typical un-ordered lists, here is mine:
&lt;ul id=&quot;RulesList&quot;&gt;
		&lt;% control ArchiveNews %&gt;
			&lt;li&gt;&lt;a class=&quot;holder&quot; id=&quot;Section&quot; href=&quot;http://www.ssbits.com/#&quot;&gt;$Date.Format(F) $Date.Year&lt;/a&gt;
				&lt;ul class=&quot;bobo&quot;&gt;
				&lt;% control Courses  %&gt;
					&lt;li class=&quot;extNews ruleContent&quot;&gt;&lt;a href=&quot;http://www.ssbits.com/&quot; title=&quot;Go to $ExternalLink&quot; class=&quot;$LinkingMode levela&quot; target=&quot;_blank&quot;&gt;&lt;span&gt;&lt;em&gt;$MenuTitle.XML&lt;/em&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
				&lt;% end_control %&gt;
				&lt;/ul&gt;
			&lt;/li&gt;			
		&lt;% end_control %&gt;
		&lt;/ul&gt;
the id=&quot;Section{$Pos} allows the jquery to see unique ids and thus the expanding menu will work.</description>
			<pubDate>Mon, 07 Dec 2009 16:19:37 -0600</pubDate>
			<author>Dave Berry</author>
			<guid>http://www.ssbits.com/jquery-expanding-menu-plugin/#PageComment_503</guid>
		</item>
		
		<item>
			<title>Comment by 'aram' on jQuery Expanding Menu Plugin</title>
			<link>http://www.ssbits.com/jquery-expanding-menu-plugin/#PageComment_498</link>
			<description>Hi Luke

Just swap all the '$' signs for 'jQuery' that should do it.

Aram</description>
			<pubDate>Thu, 03 Dec 2009 18:27:10 -0600</pubDate>
			<author>aram</author>
			<guid>http://www.ssbits.com/jquery-expanding-menu-plugin/#PageComment_498</guid>
		</item>
		
		<item>
			<title>Comment by 'Luke' on jQuery Expanding Menu Plugin</title>
			<link>http://www.ssbits.com/jquery-expanding-menu-plugin/#PageComment_497</link>
			<description>I discovered why it was not working... it conflicts with prototype.  Do you know of a way to make the two co-exist happily?</description>
			<pubDate>Thu, 03 Dec 2009 14:36:30 -0600</pubDate>
			<author>Luke</author>
			<guid>http://www.ssbits.com/jquery-expanding-menu-plugin/#PageComment_497</guid>
		</item>
		
		<item>
			<title>Comment by 'Luke' on jQuery Expanding Menu Plugin</title>
			<link>http://www.ssbits.com/jquery-expanding-menu-plugin/#PageComment_496</link>
			<description>When I use this code I get the firebug error \&quot;$(document).ready is not a function\&quot; on the first line of code. Any ideas why this might be?  I will happily contribute  directions for implementing this through SilverStripe if I figure it out.</description>
			<pubDate>Thu, 03 Dec 2009 11:03:58 -0600</pubDate>
			<author>Luke</author>
			<guid>http://www.ssbits.com/jquery-expanding-menu-plugin/#PageComment_496</guid>
		</item>
		
		<item>
			<title>Comment by 'ConnyLo' on jQuery Expanding Menu Plugin</title>
			<link>http://www.ssbits.com/jquery-expanding-menu-plugin/#PageComment_448</link>
			<description>Thank you for this manual!. I am waiting for your tutorial on implementing this menu in SilverStripe. I see some areas on my hp where I can use it. 
More of the jQuery stuff please!</description>
			<pubDate>Fri, 23 Oct 2009 03:53:56 -0500</pubDate>
			<author>ConnyLo</author>
			<guid>http://www.ssbits.com/jquery-expanding-menu-plugin/#PageComment_448</guid>
		</item>
		
		<item>
			<title>Comment by 'Chris' on jQuery Expanding Menu Plugin</title>
			<link>http://www.ssbits.com/jquery-expanding-menu-plugin/#PageComment_390</link>
			<description>I hope your still planning to make a SilverStripe tutorial on JQuery Aram??

Cos i'm completely stuck using the damn thing</description>
			<pubDate>Sun, 02 Aug 2009 13:39:09 -0500</pubDate>
			<author>Chris</author>
			<guid>http://www.ssbits.com/jquery-expanding-menu-plugin/#PageComment_390</guid>
		</item>
		

	</channel>
</rss>
