vote up 0 vote down star

I hava a web application. In that i have a link called "Home". When the user clicks the starting page of the web application that is index.jsp should be displayed in the same page. How can i do that. It should work in internet explorer.

I have the following html page.

<html>

<body bgcolor="#FFF8DC">

<a href="index.jsp" target="parent" >HOME</a>


</body>
</html>

But it is not working.

flag

0% accept rate
Try posting the html you have again. – lc Jan 9 '09 at 10:15
Yeah, your problem is unclear - post a sample an re-iterate your problem. – CJM Jan 9 '09 at 10:18
What does it mean by not working? – Vinegar Jan 9 '09 at 10:33
You need to claify your question a lot more. What is the HTML of the page? How is it being generated? – F5ToDebug Feb 12 at 9:55
usually this is symptomatic that the OP forgot to use a code block - edited, fixed – annakata Feb 12 at 10:02

9 Answers

vote up 4 vote down

< a href="url">home< /a >

link|flag
vote up 4 vote down

See http://htmlhelp.com/reference/html40/special/a.html

The TARGET attribute is used with frames to specify the frame in which the link should be rendered. If no frame with such a name exists, the link is rendered in a new window unless overridden by the user. Special frame names begin with an underscore:

* _blank renders the link in a new, unnamed window
* _self renders the link in the current frame (useful for overriding a BASE TARGET)
* _parent renders the link in the immediate FRAMESET parent
* _top renders the link in the full, unframed window

In HTML 4, the TARGET attribute value is case-insensitive, so that _top and _TOP both have the same meaning. However, most browsers treat the TARGET attribute value as case-sensitive and do not recognize _TOP as having the special meaning of _top.

link|flag
thanks. it is working. but will it work in IE also. I have checked in mozilla – xyz Feb 12 at 10:03
Yes - it is a part of language specification. – Goran Feb 12 at 10:26
vote up 4 vote down

In order for your link to open in the same window it resides in, use:

<a href="foo.html" target="_self">some text</a>

Please note the underscore before self. If you do not use it, your browser will look for a frame named "self".

link|flag
The requirement is similar to refresh button on the browser. When i click home i need the starting page of the application should be opened in the same window – xyz Feb 12 at 10:01
I do not quite get what you mean; do you want to create a link that points people to their browser's homepage? – Aron Rotteveel Feb 12 at 10:03
vote up 1 vote down

Probably is a problem addressing the jsp page. Try using the complete URL.

link|flag
vote up 1 vote down

You're just missing an underscore. "self" is treated as any other name label.

link|flag
vote up 0 vote down

Perhaps you intended TARGET="_parent" ? This allows a link to load in a parent frame

link|flag
vote up 0 vote down

target="_parent"

note the _ in _parent

link|flag
vote up 0 vote down

The command does not work. The index page is displayed in the Home link itself.

<html>

<body bgcolor="#FFF8DC">

<a href="index.jsp" target="_blank" >HOME</a>


</body>
</html>

I worked with the above code. it works very well in Internet explorer but not in mozilla. I want it to work in mozilla also.

Thanks

link|flag
YOu need to format your HTML using the "code sample" button, otherwise it just gets stripped out. – Paul Dixon Jan 9 '09 at 10:24
vote up 0 vote down

Alternatively, you can just skip the target attribute of the link. Target defaults to the same browser window if you don't specify otherwise.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.