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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hiding the URL

Status
Not open for further replies.

SmileeTiger

Programmer
Mar 13, 2000
200
US
Does anyone know of a way to hide the url so that it is not displayed in the browser.<br><br>Cory
 
You need to open the window via some JScript Code:<br><br>This should work:<br><br>function openNewWin(url) {<br> window.name = &quot;main&quot;;<br> destination = &quot;<A HREF=" TARGET="_new"> + window.location.host +&nbsp;&nbsp;url;<br> remote = window.open(destination,&quot;&quot;,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=700,height=500');<br> remote = self;<br>}<br><br>I apologise if the formatting is messy.<br><br>Using this method, you can adapt what you want on or off. <p>Ben Marshalsea<br><a href=mailto: > </a><br><a href= > </a><br>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top