I have an iframe on a page and there is a link (on the same domain) I would like to open in a new physical window. When I use target="_blank", it just reloads the page in an iframe with the new one.
I also tried this JavaScript/jQuery code:
$(document).ready(function() {
$('a[target=_blank]').click(function() {
window.open(this.href);
return false;
})
});
With no success.
The HTML tag looks like this:
<a class="blue" href="/page/terms-of-service" target="_blank">Terms of Service</a>