open multiple webpages in same tab

前端 未结 5 1532
梦如初夏
梦如初夏 2021-01-07 09:35

Have multiple hyperlinks in a report, everytime a click on a hyperlink the webpage opens in a new tab, Is it possible to open the hyperlinks in only one tab instead of multi

5条回答
  •  旧巷少年郎
    2021-01-07 10:18

    hyperlinks opens a new browser tab - is due to

    target='_blank'
    

    attribute of it. you can remove it using following jQuery code.

    $('a').removeAttr('target');
    

    now on-wards every link will get open in the same page.

提交回复
热议问题