i want to open link in new window instead of new tab. I used "_blank" and "_new" in target but its not working, its open's in new window.
<a href="allskills.php" style="text-decoration:none" target="_new">All Skills</a>
or
<a href="#" style="text-decoration:none" onClick="window.open('allskills.php', '_blank')">All Skills</a>
is there any way to open in new window?
Thanks