How to add wiki navigation menu block to left - FogBugz Knowledge Exchange most recent 30 from http://fogbugz.stackexchange.com 2013-05-23T07:37:39Z http://fogbugz.stackexchange.com/feeds/question/10909 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://fogbugz.stackexchange.com/questions/10909/how-to-add-wiki-navigation-menu-block-to-left How to add wiki navigation menu block to left bitbounce 2012-10-28T13:41:06Z 2013-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#10910 Answer by Michel de Ruiter for How to add wiki navigation menu block to left Michel de Ruiter 2012-10-29T08:52:48Z 2012-10-29T09:14:54Z <p>How about something like this:</p> <pre><code>$('&lt;div class="wiki-page-browse-menu-title"&gt;New title&lt;/div&gt;' + '&lt;div class="wiki-page-browse-menu-separator"&gt;&lt;/div&gt;' + '&lt;ul class="wiki-page-browse-menu"&gt;' + '&lt;li&gt;&lt;a href="somewhere"&gt;New entry&lt;/a&gt;&lt;/li&gt;' + '&lt;/ul&gt;').appendTo('#wiki-page-search'); </code></pre>