| Author: Anuraj 14 Oct 2009 | Member Level: Diamond | Rating:  Points: 2 |
Create a FRAME below the links and Set the Target of the HREF to that Frame.
Thanks Anuraj THIS POSTING IS PROVIDED "AS IS" WITH NO WARRANTIES, AND CONFERS NO RIGHTS. BEWARE OF BUGS IN THE ABOVE CODE; I HAVE ONLY PROVED IT CORRECT, NOT TRIED IT. dotnetthoghts
|
| Author: Anil Kumar Pandey 14 Oct 2009 | Member Level: Diamond | Rating:  Points: 2 |
hi,
you can use Target="_Blank" for the same thing... in the link.
Thanks & Regards Anil Kumar Pandey
|
| Author: Deepak Yadav 14 Oct 2009 | Member Level: Silver | Rating:  Points: 2 |
Hi, You can use frames for this , A very simple example of the frame is at below link http://www.w3schools.com/html/tryit.asp?filename=tryhtml_frame_navigation The above example clearly explains with an example what you want Even then if your problem is not solved , please reply me
Cheers
deepak yadav
|
| Author: nitkumr 15 Oct 2009 | Member Level: Bronze | Rating:  Points: 2 |
Hi,
Thanks for your reply.
But that frameset is not working fine :( Could you pls give me a better solution ?
thanks :)
|
| Author: ashish chitranshi 18 Oct 2009 | Member Level: Bronze | Rating:  Points: 2 |
You can use div with scroll property which inherit a frame inside <div style="overflow:scroll"> <frame.....
> </div>
|
| Author: madhavi 22 Oct 2009 | Member Level: Silver | Rating:  Points: 2 |
hi
use target=_blank
|
| Author: soniya bhatia 29 Oct 2009 | Member Level: Silver | Rating:  Points: 2 |
U can put it like this
<div id="menu"> <ul> <li><a href="new.html" target="_blank">New</a></li> <li><a href="welcome.html" target="_blank">Welcome</a></li>
</ul> </div>
|
| Author: Shameer 15 Nov 2009 | Member Level: Silver | Rating:  Points: 2 |
Visit the below URL, you will get idea:
http://www.w3schools.com/html/html_frames.asp
|
| Author: abdul rahim 16 Nov 2009 | Member Level: Silver | Rating:  Points: 2 |
u use frames
|
| Author: Alwyn 16 Nov 2009 | Member Level: Gold | Rating:  Points: 2 |
<li><a href="javascript:redirect()">Welcome</a></li> <script language="javascript"> function redirect() { window.location.href = "welcome.htm" } </script> Use Location.href in Javascript
Thanks & Regards, Alwyn Duraisingh.M
|
| Author: Sunil 17 Nov 2009 | Member Level: Silver | Rating:  Points: 2 |
Some suggested about target blank ..which will open a new window ..u need it in new window or in same
|