06/09/2014

Hide url in address bar

| |
Qus: How to hide url in address bar ?

Ans:

The HTML script above works on both Internet Explorer and Netscape/Firefox, etc.


This is First Method:

<html>
<iframe src=http://google.com width=100% noborder height=100% no scroll>
 </html>

This is Second Method:

<html>
<FRAMESET border=0 rows="100%,*" frameborder="no" marginleft=0 margintop=0 marginright=0 marginbottom=0>
<frame src="http://www.WEBSITE.com" scrolling=auto frameborder="no" border=0 noresize>
<frame topmargin="0" marginwidth=0 scrolling=no marginheight=0 frameborder="no" border=0 noresize>
</FRAMESET>
</html>

Demo

0 comments:

Post a Comment

Check Your Codes

Check the result of your (sample) HTML,CSS,JavaScript code.