---
title: "How can we remove address bar of browser"  
description: "How can we remove address bar of browser"  
author: "Rajesh Goswami"  
published: 2010-10-29  
updated: 2011-05-20  
canonical: https://www.mindstick.com/forum/70/how-can-we-remove-address-bar-of-browser  
category: "javascript"  
tags: ["javascript"]  
reading_time: 1 minute  

---

# How can we remove address bar of browser

I [am trying](https://answers.mindstick.com/qa/36834/which-two-programming-languages-should-i-master-in-if-i-am-trying-to-get-into-google-or-facebook) to [remove](https://yourviews.mindstick.com/story/4554/8-harmful-weeds-to-remove-from-garden) [address bar](https://www.mindstick.com/forum/12948/how-to-modify-url-to-strip-out-the-pathname-and-set-it-to-the-address-bar) of [browser](https://www.mindstick.com/blog/155254/which-is-the-best-internet-browser) from javascript. I am [writing](https://www.mindstick.com/articles/12997/5-essential-tips-on-resume-writing-for-business-analysts) the following code\
\
window.open('newWindow.aspx', 'new', 'width=' + width + ', height=' + height + ', toolbar=no,[location](https://www.mindstick.com/blog/11636/relocating-business-or-office-to-another-location)=0, [left](https://www.mindstick.com/articles/12768/don-t-be-left-behind-with-the-new-it-revolution)=' + left + ',top=' + top + 'screenX=' + left + ',screenY=' + top + ', directories=no, menubar=no,scrollbars=no,resizable=no, [status](https://www.mindstick.com/articles/157184/check-lic-policy-status-online-by-policy-number)=no'); \
please help,\
\
Thanks in [advance](https://www.mindstick.com/blog/33258/jee-mains-and-jee-advance-exams)

## Replies

### Reply by Anonymous User

Hi...

Try following code to hide address bar from browser

```
function openWindow(){
var browser=navigator.appName;
if (browser==”Microsoft Internet Explorer”)
{
window.opener=self;}
window.open(‘filename.htm’,'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();
}
```

May be this solve your problem.


---

Original Source: https://www.mindstick.com/forum/70/how-can-we-remove-address-bar-of-browser

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
