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
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.