In my html code there are several link like this:
<a href="www.exampe.com" target="_blank">example</a>
Is there a way to open these links in a new tab ( and not in a new window ) ?
In my html code there are several link like this:
<a href="www.exampe.com" target="_blank">example</a>
Is there a way to open these links in a new tab ( and not in a new window ) ?
There is no way to do this, short of a browser plugin.
That is for a reason. You do not want to take the user somewhere they don't want to be.
They may not want to be in Internet Explorer.
What you SHOULD do is suggest that your website may only be compatible with IE. This way, the user can only blame themselves if something does not work. Not ideal, but it's generally accepted practice.
You cannot control the preference the user has set in their browser. You might consider adding some text like
If the user follows your suggestion, the page will open in a new tab. None of this is optimal.
See HTML: how to force open links in a new tab for more.
target="_blank"
attribute should open that page in a new tab. It probably depends on your browser settings whether the page opens in a new tab or window.