I\'m messing around with jQuery and ran in to a problem I can\'t seem to solve. I know it\'s possible with jQuery, but can\'t find a proper example to work off of. I have a
This should do it with jQuery...
$('a[target="_blank"]').removeAttr('target');
With a modern browser...
Array.from(document.querySelectorAll('a[target="_blank"]'))
.forEach(link => link.removeAttribute('target'));
With an older browser such as earlier IEs...
var links = document.links, i, length;
for (i = 0, length = links.length; i < length; i++) {
links[i].target == '_blank' && links[i].removeAttribute('target');
}