<?xml version="1.0" encoding="UTF-8"?><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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Making accordion menu using jquery</title>
	<atom:link href="http://roshanbh.com.np/2008/06/accordion-menu-using-jquery.html/feed" rel="self" type="application/rss+xml" />
	<link>http://roshanbh.com.np/2008/06/accordion-menu-using-jquery.html</link>
	<description>Useful Tutorials, Scripts , Tips, and Resources for all PHP and Ajax beginners and experts .</description>
	<lastBuildDate>Tue, 16 Mar 2010 10:21:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Beben</title>
		<link>http://roshanbh.com.np/2008/06/accordion-menu-using-jquery.html/comment-page-4#comment-5243</link>
		<dc:creator>Beben</dc:creator>
		<pubDate>Sat, 13 Mar 2010 15:15:56 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=115#comment-5243</guid>
		<description>thank you ^^</description>
		<content:encoded><![CDATA[<p>thank you ^^</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: okmat</title>
		<link>http://roshanbh.com.np/2008/06/accordion-menu-using-jquery.html/comment-page-4#comment-5198</link>
		<dc:creator>okmat</dc:creator>
		<pubDate>Thu, 25 Feb 2010 20:21:15 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=115#comment-5198</guid>
		<description>Thanks! this is exactly what I was looking for.
A small contribution to this code: you can add a toggle function and an ID to the  element to manually collapse a specific menu, for example with a button. This not only allows for more control but also provides a way to expand a specific menu acording to the current page and even generating a java script with PHP...

Add this inside the  section:
function toggle(pID){
$(document.getElementById(pID)).css({backgroundImage:&quot;url(down.png)&quot;}).next(&quot;div.menu_body&quot;).slideToggle(300).siblings(&quot;div.menu_body&quot;).slideUp(&quot;slow&quot;);
$(document.getElementById(pID)).siblings().css({backgroundImage:&quot;url(left.png)&quot;});
}

And ad an ID to the  tag 
Header-1

And a button to collapse the menu manually



Cheers!</description>
		<content:encoded><![CDATA[<p>Thanks! this is exactly what I was looking for.<br />
A small contribution to this code: you can add a toggle function and an ID to the  element to manually collapse a specific menu, for example with a button. This not only allows for more control but also provides a way to expand a specific menu acording to the current page and even generating a java script with PHP&#8230;</p>
<p>Add this inside the  section:<br />
function toggle(pID){<br />
$(document.getElementById(pID)).css({backgroundImage:&#8221;url(down.png)&#8221;}).next(&#8220;div.menu_body&#8221;).slideToggle(300).siblings(&#8220;div.menu_body&#8221;).slideUp(&#8220;slow&#8221;);<br />
$(document.getElementById(pID)).siblings().css({backgroundImage:&#8221;url(left.png)&#8221;});<br />
}</p>
<p>And ad an ID to the  tag<br />
Header-1</p>
<p>And a button to collapse the menu manually</p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nayeem@vicoast</title>
		<link>http://roshanbh.com.np/2008/06/accordion-menu-using-jquery.html/comment-page-4#comment-5197</link>
		<dc:creator>nayeem@vicoast</dc:creator>
		<pubDate>Thu, 25 Feb 2010 12:44:29 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=115#comment-5197</guid>
		<description>The script is very good. But it has a problem. let me take u to scenario. U have clicked over a menu, it shows u all the sub menus. Now  when u click over a menu which is not having any sub menu then when the opened menu regain its size but the line separating the menus get merge at one place. Can u please tell how can come over this problem.
Thanks in advance.
NayeemKhan</description>
		<content:encoded><![CDATA[<p>The script is very good. But it has a problem. let me take u to scenario. U have clicked over a menu, it shows u all the sub menus. Now  when u click over a menu which is not having any sub menu then when the opened menu regain its size but the line separating the menus get merge at one place. Can u please tell how can come over this problem.<br />
Thanks in advance.<br />
NayeemKhan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Accordion Menu Using jQuery</title>
		<link>http://roshanbh.com.np/2008/06/accordion-menu-using-jquery.html/comment-page-4#comment-5175</link>
		<dc:creator>Accordion Menu Using jQuery</dc:creator>
		<pubDate>Sat, 20 Feb 2010 00:15:14 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=115#comment-5175</guid>
		<description>[...] Demostration Demo Page [...]</description>
		<content:encoded><![CDATA[<p>[...] Demostration Demo Page [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kamran</title>
		<link>http://roshanbh.com.np/2008/06/accordion-menu-using-jquery.html/comment-page-4#comment-5158</link>
		<dc:creator>kamran</dc:creator>
		<pubDate>Tue, 16 Feb 2010 03:00:11 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=115#comment-5158</guid>
		<description>i think we should change second command from :
$(this).siblings().css({backgroundImage:&quot;url(images/newsGroup_hdr.png)&quot;});

to this:
$(this).siblings(&quot;menu_head&quot;).css({backgroundImage:&quot;url(images/newsGroup_hdr.png)&quot;});</description>
		<content:encoded><![CDATA[<p>i think we should change second command from :<br />
$(this).siblings().css({backgroundImage:&#8221;url(images/newsGroup_hdr.png)&#8221;});</p>
<p>to this:<br />
$(this).siblings(&#8220;menu_head&#8221;).css({backgroundImage:&#8221;url(images/newsGroup_hdr.png)&#8221;});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stephen</title>
		<link>http://roshanbh.com.np/2008/06/accordion-menu-using-jquery.html/comment-page-4#comment-5147</link>
		<dc:creator>stephen</dc:creator>
		<pubDate>Thu, 11 Feb 2010 07:32:06 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=115#comment-5147</guid>
		<description>Dear Roshan,

Thank you for your great effort, it is very helpful to do our things easy.

Could you guide me to edit the code for mouse over accordion to collapse if I move the mouse out of the menu.

Thank you and looking forward.

Stephen</description>
		<content:encoded><![CDATA[<p>Dear Roshan,</p>
<p>Thank you for your great effort, it is very helpful to do our things easy.</p>
<p>Could you guide me to edit the code for mouse over accordion to collapse if I move the mouse out of the menu.</p>
<p>Thank you and looking forward.</p>
<p>Stephen</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rakshit</title>
		<link>http://roshanbh.com.np/2008/06/accordion-menu-using-jquery.html/comment-page-4#comment-5136</link>
		<dc:creator>Rakshit</dc:creator>
		<pubDate>Fri, 05 Feb 2010 17:54:07 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=115#comment-5136</guid>
		<description>Hello Praveen,

If you would like to open first menu open than you have to write style=&quot;display:block;&quot; sentence in First Div in HTML.

This will overwrite the CSS style of class display:none for first div. 

Once you will add inline style in first div, it will be visible when page loads.

Thanks.</description>
		<content:encoded><![CDATA[<p>Hello Praveen,</p>
<p>If you would like to open first menu open than you have to write style=&#8221;display:block;&#8221; sentence in First Div in HTML.</p>
<p>This will overwrite the CSS style of class display:none for first div. </p>
<p>Once you will add inline style in first div, it will be visible when page loads.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rakshit</title>
		<link>http://roshanbh.com.np/2008/06/accordion-menu-using-jquery.html/comment-page-4#comment-5135</link>
		<dc:creator>Rakshit</dc:creator>
		<pubDate>Fri, 05 Feb 2010 17:45:18 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=115#comment-5135</guid>
		<description>Hi,

Very well Explained. Its working.  Thanks bro. Looking forward to new posts on menu styles.

Thanks,
Rakshit.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Very well Explained. Its working.  Thanks bro. Looking forward to new posts on menu styles.</p>
<p>Thanks,<br />
Rakshit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Praveen</title>
		<link>http://roshanbh.com.np/2008/06/accordion-menu-using-jquery.html/comment-page-4#comment-5125</link>
		<dc:creator>Praveen</dc:creator>
		<pubDate>Wed, 03 Feb 2010 11:51:26 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=115#comment-5125</guid>
		<description>Hi,
Thanks for the script. It works. What should i do to make first menu expand by default?

Please help !</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Thanks for the script. It works. What should i do to make first menu expand by default?</p>
<p>Please help !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Web Development Company</title>
		<link>http://roshanbh.com.np/2008/06/accordion-menu-using-jquery.html/comment-page-4#comment-5124</link>
		<dc:creator>Web Development Company</dc:creator>
		<pubDate>Wed, 03 Feb 2010 09:21:35 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=115#comment-5124</guid>
		<description>Simply excellent , it helps a lot while programming with Jquery. i got the learning Jquery e-books from some rapid sites, there are really very invaluable info on this language. . . . .Thanks for sharing</description>
		<content:encoded><![CDATA[<p>Simply excellent , it helps a lot while programming with Jquery. i got the learning Jquery e-books from some rapid sites, there are really very invaluable info on this language. . . . .Thanks for sharing</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amazing jQuery Accordions &#171; anil&#39;s Blog</title>
		<link>http://roshanbh.com.np/2008/06/accordion-menu-using-jquery.html/comment-page-4#comment-5115</link>
		<dc:creator>Amazing jQuery Accordions &#171; anil&#39;s Blog</dc:creator>
		<pubDate>Sat, 30 Jan 2010 14:52:25 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=115#comment-5115</guid>
		<description>[...] Accordion menu using jQuery [...]</description>
		<content:encoded><![CDATA[<p>[...] Accordion menu using jQuery [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 13 Excellent Tutorials On Creating jQuery Navigation Menu &#171; Nulls</title>
		<link>http://roshanbh.com.np/2008/06/accordion-menu-using-jquery.html/comment-page-4#comment-5094</link>
		<dc:creator>13 Excellent Tutorials On Creating jQuery Navigation Menu &#171; Nulls</dc:creator>
		<pubDate>Tue, 26 Jan 2010 01:32:03 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=115#comment-5094</guid>
		<description>[...] 2- How to make accordion menu using jquery [...]</description>
		<content:encoded><![CDATA[<p>[...] 2- How to make accordion menu using jquery [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 30 Useful Tutorial for JavaScript Framework Navigation &#124; Tutorials &#124; instantShift</title>
		<link>http://roshanbh.com.np/2008/06/accordion-menu-using-jquery.html/comment-page-4#comment-5093</link>
		<dc:creator>30 Useful Tutorial for JavaScript Framework Navigation &#124; Tutorials &#124; instantShift</dc:creator>
		<pubDate>Mon, 25 Jan 2010 14:18:55 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=115#comment-5093</guid>
		<description>[...] Official Link [...]</description>
		<content:encoded><![CDATA[<p>[...] Official Link [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gotowe skrypty jquery, mootools &#171; Sebastian Sobieraj</title>
		<link>http://roshanbh.com.np/2008/06/accordion-menu-using-jquery.html/comment-page-4#comment-5083</link>
		<dc:creator>Gotowe skrypty jquery, mootools &#171; Sebastian Sobieraj</dc:creator>
		<pubDate>Sat, 23 Jan 2010 11:20:38 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=115#comment-5083</guid>
		<description>[...] 23. Accordion style jQuery menu: [...]</description>
		<content:encoded><![CDATA[<p>[...] 23. Accordion style jQuery menu: [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: michel</title>
		<link>http://roshanbh.com.np/2008/06/accordion-menu-using-jquery.html/comment-page-4#comment-5072</link>
		<dc:creator>michel</dc:creator>
		<pubDate>Tue, 19 Jan 2010 07:12:44 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=115#comment-5072</guid>
		<description>« BUT, not on Safari (windows and mac) : impossible to open the menu if configurated on “clicking” and when completely closed. »
Sorry for disturbing : all is OK now. The menu works perfectly, in Safari too !</description>
		<content:encoded><![CDATA[<p>« BUT, not on Safari (windows and mac) : impossible to open the menu if configurated on “clicking” and when completely closed. »<br />
Sorry for disturbing : all is OK now. The menu works perfectly, in Safari too !</p>
]]></content:encoded>
	</item>
</channel>
</rss>
