I have converted an excel file to an .htm file. In the excel file are links. I have embedded the .htm file in my website These links should be open in a new tab and not in the iframe.
How can I do this? target="_blank" didn't work.
<iframe src="website.htm" style="border:none;" width="100%" height="300">
</iframe>
This also not worked:
<script src="https://code.jquery.com/jquery-latest.js"></script>
<iframe src="website.htm" style="border:none;" width="100%" height="300">
</iframe>
<script>
$('iframe a').attr('target', '_blank');
</script>