Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hide Url? 1

Status
Not open for further replies.

darkprince

Programmer
Jun 4, 2002
165
AU
hello

how can I hide the url in the address bar up the top so that when it goes to a different page it stays on the same address. And also how do I did the url of opening pages down the bottum there on the left where it says 'Done' or 'Opening ...' or whatever.

thanks in advance
ciao
 
Hi,

Not sure about keeping the addy at the top the same, the only time I have ever seen it stay the same is when you use frames.

As for the other part use this:

<A HREF=&quot;page.html&quot; onmouseover=&quot;window.status='THIS PART HIDES THE URL AT THE BOTTOM';return true;&quot; onmouseout=&quot;window.status=' ';return true;&quot;>link</A>

Hope this helps!
relax.gif

 
hey

thanks for that code I know a way I can show you I think so I'll do it and reply where to go when it's done.

ciao
 
Hi,

That's what I was eluding to when I said that they only time I have ever seen this is when you use frames. That page uses frames and so the address at the top stays the same.

This is doing what you want it to do isn't it? Is there a problem?

relax.gif

 
hey

what do you mean it uses frames? there are no frames on there at all? I'm sure there's a simple explanation to this that will embaress me heaps but oh well...

ciao
 
Hi,

Yes it does use frames. Look at the source code. Here is it:
<frameset border=&quot;0&quot; rows=&quot;100%,*&quot;>
<frame name=&quot;frame&quot; src=&quot;</frameset>


That first page has a one frame frameset that calls the page that has the link to &quot;Page 2&quot;. B/c there is no target specified in the link all links stay in the frameset hence the address not changing.

Hope this helps!
relax.gif

 
wow thx a heap you've helped me i dont know how many times but it's alot

ciao
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top