wikishia:WikiProject User scripts/Scripts/Talk page section tabs

From wikishia

//Purpose : Make red link "discussion" tabs go to the new section edit page rather than the normal newpage edit page.

//Add the code to Special:mypage/monobook.js.

//

function talkpageplus()
{
    var talkpagelink = document.getElementById('ca-talk');
    if (talkpagelink.className == 'new')
    {
        talkpagelink.firstChild.href += '&section=new';
    }
}

addOnloadHook(talkpageplus);
//

//