User:SoledadKabocha/copySectionLink.js

// User:Bility/copySectionLink.js fixed to work on any wiki and to handle titles with question marks correctly

$(document).ready(function() {

var i=0;

$('span.mw-headline').each(function() {

var $pilcrowlink = $('').attr({

id: 'sectiontitlecopy'+i,

href: window.location.pathname+window.location.search+'#'+$(this).attr('id'),

style: 'display:none;'

});

$(this).append(' ',$pilcrowlink);

$(this).parent().attr({

onMouseOver: '$("#sectiontitlecopy'+i+'").attr("style","display:inline")',

onMouseOut: '$("#sectiontitlecopy'+i+'").attr("style","display:none")'

});

i++;

});

});