want to click on multiple links and open them in the same tab page with the following code:
<a href="aaa.jsp" target="xxx">xxx</a>
<a href="bbb.jsp" target="xxx">xxx</a>
but there is a problem. If aaa.jsp and bbb.jsp have redirects, target will fail. Clicking on the link will still open a new window. Could you tell me how to solve this?
Thank you.