How to add wiki navigation menu block to left - FogBugz Knowledge Exchange most recent 30 from http://fogbugz.stackexchange.com2013-05-23T07:37:39Zhttp://fogbugz.stackexchange.com/feeds/question/10909http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://fogbugz.stackexchange.com/questions/10909/how-to-add-wiki-navigation-menu-block-to-leftHow to add wiki navigation menu block to leftbitbounce2012-10-28T13:41:06Z2013-05-13T17:22:00Z
<p>I'm trying to figure out how to add a new custom menu block in the left panel when viewing a Wiki. For example, there is the "Hierarchy" block or "Tags" block by default, how can I add my own new block? </p>
http://fogbugz.stackexchange.com/questions/10909/how-to-add-wiki-navigation-menu-block-to-left/10910#10910Answer by Michel de Ruiter for How to add wiki navigation menu block to leftMichel de Ruiter2012-10-29T08:52:48Z2012-10-29T09:14:54Z<p>How about something like this:</p>
<pre><code>$('<div class="wiki-page-browse-menu-title">New title</div>' +
'<div class="wiki-page-browse-menu-separator"></div>' +
'<ul class="wiki-page-browse-menu">' +
'<li><a href="somewhere">New entry</a></li>' +
'</ul>').appendTo('#wiki-page-search');
</code></pre>