php - Hide address bar in browsers or hide url in the address bar -


i trying hide address bar in browsers. have done enough searching , found code work. following code

function openwindow(){ var browser=navigator.appname; if (browser=="microsoft internet explorer") { window.opener=self;  }    window.open("index.html","null","width=900,height=750,toolbar=no,scrollbars=no,location=no,resizable =yes"); window.moveto(0,0); window.resizeto(screen.width,screen.height-100); self.close(); } 

location=no/0 etc not working , address bar still there. should do? if not possible there way hide url in address bar?

it not possible in modern browsers since concealing address of page aids phishing attacks.


Comments

Popular posts from this blog

java - JavaFX 2 slider labelFormatter not being used -

Detect support for Shoutcast ICY MP3 without navigator.userAgent in Firefox? -

web - SVG not rendering properly in Firefox -