jQuery(function ($) { $(':header').each(function(){ var id = $(this).attr('id'); if (!id) { // https://github.com/Dric/dokuwiki-titlesanchorlink/issues/1 return; } var name = $(this).text(); $(this).append(''); }); $(':header').mouseover(function() { var id = $(this).attr('id'); $('#anchor__'+id).show(); }).mouseout(function(){ var id = $(this).attr('id'); $('#anchor__'+id).hide(); }); });