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