show/hide this revision's text 2 added 1 characters in body

Here's some code to add a custom button in the button bar.

<script type="text/javascript">
$(document).ready(function(){
    var box = $(".nav > ul:eq(0)");
    box.prepend("<li><a href='http://blog.whenbusiness.comhref='http://blogs.whenbusiness.com'>Blog</a></li>");
   });
</script>
show/hide this revision's text 1

Here's some code to add a custom button in the button bar.

<script type="text/javascript">
$(document).ready(function(){
    var box = $(".nav > ul:eq(0)");
    box.prepend("<li><a href='http://blog.whenbusiness.com'>Blog</a></li>");
   });
</script>