/** Show each section link when hovering over each respective headline. * * @author Anika Henke * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) */ function addWikiLinksToHeadlines() { jQuery('.page h1, .page h2, .page h3, .page h4, .page h5').each(function(){ $this = jQuery(this); var wikiLink = '[[:'+JSINFO.id+'#'+$this.attr('id')+'|'+$this.text()+']]'; $this.append(jQuery(''+wikiLink+'')); }); } jQuery(addWikiLinksToHeadlines);