Click here to Skip to main content
15,886,689 members
Please Sign up or sign in to vote.
1.44/5 (2 votes)
See more:
to
HTML
<a href="ceo.html" target="_self"> CEO</a>

when i click the above link it is opening in a new tab i want to open in the same window
Posted
Updated 9-Feb-17 6:49am
v2
Comments
DamithSL 12-Feb-15 7:23am    
if it is self targeted then it should open in same window. can you update the question with minimum full html page to recreate the bug or give the link to your site if it is accessible from internet.
DamithSL 12-Feb-15 7:25am    
have you tried without using target in your link?
Member 11387088 12-Feb-15 7:33am    
yes then to it is opening in a new window
Member 11387088 12-Feb-15 7:29am    
<!DOCTYPE html>
<html>

<head>
<title>Chella software</title>
<link rel="shortcut icon" href="c:/intranet/logo.png" type="image/png">
<link href="Style.css" rel="stylesheet">
<link href="Style1.css" rel="stylesheet">
</head>
<body>
<tr>
<div class="image">
<img alt="image" src ="c:\intranet\informatica-india4.jpg" >
<div class="text">
<p>It is in the blood of </br>
every Chellites</br>
to come up with </br>
innovative ideas </br>
and we satisfy our </br>
client needs </br>
</p>
</div>
</div>
</tr>

About Us voice of chella



A financial markets specialist


<p>Chella Software is a Financial Markets Specialist,
and a leading provider of products, solutions and services
in the areas of online trading systems,
broking back office, treasury management,
risk management, and fund management.</p>

<p>Founded in 2000, Chella Software was started by financial markets professionals with
</p><br>

Board of Directors


<p> CHELLA is PROUD on having <br>
a diverse,experienced and <br>
and independent board of directors </br></p>

ceo
kathir sir

Kathir Kamanathan , CHIEF EXECUTIVE OFFICIER


<p>Kathir, a founding member of our company, has over 20 years of <br>
business and technology experience in the securities industry. <br>
He has hands-on experience in managing securities operations <br>
and intricately understands business issues.</br></p>

Perichiappan Lakshmanan ,Vice President – Engineering and Delivery


<p>Peri is an engineer from the University of Madras, with 14 years experience in architecting and designing <br>
software for the securities industry. </br></p>

Subbiah Rajagopal , Principal Consultant and Head of Client Engagements


<p>Subbu is an engineer from Annamalai University, and a management graduate from Alagappa University,<br>
and has been with Chella Software since 2003. </br></p>

Arun Kumar Polappan, PMP | Head – IT & ITES


<p>Arun has over 16 years of experience in management, IT/ITES consulting <br>
and CRM-Siebel. He is a certified Project Management Professional and Siebel consultant,<br>
and a Life Member of the Combustion Institute (IIT - Chennai).
</br></p>


</body>
</html>
ZurdoDev 12-Feb-15 8:48am    
Just remove target all together. If it still opens in new tab then it is a browser setting.

1 solution

From the W3Schools site:

_blank

Opens the linked document in a new window or tab

_self

Opens the linked document in the same frame as it was clicked (this is default)

_parent

Opens the linked document in the parent frame(This is the one I think you are wanting to use)

_top

Opens the linked document in the full body of the window

framename

Opens the linked document in a named frame


If one of these are not working then the user has a setting in the browser that will override them....
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900