/** * Add CSS: a.anchor { color: #ddd; text-decoration: none; } * Requires jQuery for :header selector */ $(function() { $(":header[id]").each(function() { var $this = $(this), link = $this.html() + ' #'; $this.html(link); }); });