For example if I am having a website with link.
Code: Select all
<a href="item.php">Something</a>Moderator: General Moderators
Code: Select all
<a href="item.php">Something</a>Use the target="_top" attributeEffect wrote:So I am wondering how can I open a link in same window?
For example if I am having a website with link.How can I make it to open the link under it, without it opening it to a new window?Code: Select all
<a href="item.php">Something</a>
Code: Select all
<a href="item.php" target="_top" >Something</a>That does the same thing for me as the _self does.lipun4u wrote:Use the target="_top" attributeEffect wrote:So I am wondering how can I open a link in same window?
For example if I am having a website with link.How can I make it to open the link under it, without it opening it to a new window?Code: Select all
<a href="item.php">Something</a>Code: Select all
<a href="item.php" target="_top" >Something</a>
I think you'll need to explain what you are after again.How can I make it to open the link under it, without it opening it to a new window?
Code: Select all
<a href="item.php" target="_parent" >Something</a>