JSFiddle - React, Tailwind, and code Playground

by tuga

HTML

<a id="mypagelink" href="../mypage1.aspx">My page1</a>
<a id="mypagelink" href="../mypage2.aspx">My page2</a>
<a id="mypagelink" href="../mypage3.aspx">My page3</a>

JavaScript

$(function(){
var url='';
    $.each($('a'), function(){
     url =$(this).attr('href');
       // alert(url);
    $(this).attr('href', url.replace('.aspx','/'));
    });

})