Address bar, "location bar" or "Omnibox" refers to the bar in web browsers which is used to navigate between pages using URLs.

learn more… | top users | synonyms

0
votes
0answers
6 views

after setting tabindex of controlers ,press tab sometimes will jumping to address bar with IE8

I have form and set the tabindex properly of all the input and select controlers, it works OK at the most time, but sometimes, the cursor will jumping to the address bar. anyone can help me?
0
votes
1answer
45 views

How to repair a modified address bar with php

PHP newbie, I'm trying to make my site tamper proof. I want to reload the page url if somebody modifies the url in the browser address bar. One way I've thought of would be to store the page url in a ...
0
votes
1answer
48 views

Accessing a cookie's value through the Address Bar

Let's say that a user on my site has a cookie from another site and I know the cookie's name. Basically what I am trying to do is to give users a link to the address bar, and with it a Javascript code ...
0
votes
0answers
24 views

Activating a cookie with the address bar

Let's say that a user on my site has a cookie from another site and I know the cookie's name. Basically what I am trying to do is to give users a link to the address bar, and with it a Javascript ...
-1
votes
1answer
83 views

Disable Mouse Click Operation into Browser's addressbar

Being Security Reason now in Modern Browser Doesn't Support location=no to hide the address bar. So I am Concerning here, to disable all Mouse Operation into address bar. So that following operation ...
1
vote
4answers
128 views

Hiding the address bar of a browser

I have to hide the address bar of a browser. I am using this code: var winFeature = 'location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes'; ...
0
votes
0answers
29 views

Redirected address bar to display origional site name

I currently own www.xclo.co.uk and have been running my mobile site located at m.xclo.co.uk for a while now. I just yesterday bought a new domain of www.xclo.mobi and would like this to replace my ...
0
votes
2answers
156 views

hiding the browser's address bar

My client requires that the address bar of the browser get hidden as soon he accesses the project . I'm trying to figure out a way to trigger a full screen event on load . But apparently this can't be ...
0
votes
0answers
73 views

iPhone Address Bar Hides, But Fails to Hide when DIV tag is added

Ok this is driving me nuts! I put together two demo files to demonstrate my question. On a simple HTML document (just a few paragraph tags) using the scrollTo() js, the iPhone address bar hides fine. ...
0
votes
0answers
25 views

Drag Link From Browser Address Bar To JavaScript App

I have a Web Desktop Bookmarking site and I want users to be able to drag and drop the Site Icon from the browser bar to my JavaScript App in another tab. This works nicely in Chrome (if you try), ...
1
vote
0answers
397 views

Hide address bar not working - bulletproof approach needed

At the moment I am writing some kind of web app and I want to hide the address bar on iOS devices and preferably also on Android devices. Normally I do this with window.addEventListener( 'load', ...
0
votes
1answer
145 views

Web App Hide address bar firing too late

Having found how to hide the address bar from a post on SO, I need to execute this script in order to get the viewport height AFTER the address bar is scrolled out of view. But the H and W vaues are ...
0
votes
0answers
73 views

Where does FireFox-10 hide the URL Favicon relationship?

We use CentOS-6, a RedHat EL6 distro rebuild, and this ships with FireFox-10.0.12 ESR. We recently changed the favicon.ico image on several internal servers. Actually we just provided the corporate ...
0
votes
0answers
18 views

Hide address/tab bar in chrome/safari browser on mobile [duplicate]

Possible Duplicate: Hiding browser address bar without reloading I created a web page for mobile. I need to hide the browser address bar and tab bar on mobile. Is there any way to hide it ...
2
votes
1answer
640 views

Chrome Extension: blank new tab + address bar focus

I'm using this extension to get a blank page each time I open a new tab, unfortunately the address bar is not focused after the new tab is open. I changed the new page contents to dispatch the ...
1
vote
1answer
99 views

How can I programatically show the adress bar in Mobile Safari on iPhone via JavaScript?

If you view a website via mobile Safari and you scroll up to the very top, it will show the address bar. On my website I must use iScroll which works great so far but when I scroll up, it won't show ...
5
votes
2answers
252 views

What algorithm does google use to make Chrome browser's address bar to act as a default search bar for many websites?

I am wondering what algorithm does google use to make chrome browser's address bar to act as a default search bar for many websites like SO, Quroa etc. but not for facebook, metastackoverflow etc.. ...
0
votes
3answers
143 views

Is it possible to use inject $.post() from address bar?

I have a javascript in which I use $.post() command to post variables to a php file, I have the URL of the php file hardcoded in the same .js file. I just want to know if it's possible for someone ...
1
vote
0answers
617 views

WebApp with jQuery mobile hide addressbar don't work because google browser has a bug with height

When you hide the addressbar in WebbApps you got nearly the feeling of native Apps. Unfortunately, to hide the address bar works in jQuery mobile only if the content is large enough. If the content is ...
1
vote
0answers
288 views

One page website: Rewrite URL in address-bar when clicking an anchor-link

I have set up a one-page, horizontal scrolling website with several anchors combined with DIV-id's. The website has five pages side-by-side that automatically render full-page based on the visitors ...
0
votes
1answer
141 views

Create a Javascript POPUP by using the address bar

I trying to bookmark a popup window link as a popup window rather then just a normal bookmark link something like so: ...
0
votes
1answer
207 views

Mobile website hide address bar safari browser with anchor inks

Below is the function for hiding the address bar on a mobile for Safari, but how would build some additional logic that this function ONLY is initiated when there is no # in the URl present. Because ...
0
votes
1answer
172 views

Disable address bar of browser in android

I have disabled the android address bar by using the below line of code. if(isAddressBarEnabled) mLayout.findViewById(R.id.address_bar).setVisibility(View.VISIBLE); else ...
1
vote
1answer
75 views

Entering text into the omnibar programmatically

Is it possible to enter text from an extension or userscript into the address bar/omnibox in google chrome?
1
vote
1answer
922 views

Jquery Mobile - Disable address bar auto hide

Wondering if there's a way to stop Jquery Mobile from auto hiding the address bar. Apparently it does this by default and I've found just one other post pointing to the mechanism. If someone has ...
1
vote
1answer
2k views

Hide address Bar for safari on ios 6

I am trying to hide the address bar for a webpage. On Iphone 4 and lower it works using window.scrollTo(0,1); and meta tags . But for IOS 6, these do not seem to work. I have checked other similar ...
2
votes
2answers
184 views

Firefox focus transition failure when focus starts in address bar

When I attempt to set the focus to an input element when the page loads, it fails with Firefox in certain circumstances. Here is the code: :focus { outline: 3px solid #ff0000; } <script ...
0
votes
2answers
319 views

How to get the current address of Safari's address bar with AppleScript

I want to read the address out of the address bar of a safari window with AppleScript. One can use keystroke-simulating with cmd+l, cmd+c and subsequently read out the clipboard. But this is ...
1
vote
1answer
865 views

autohide address bar issue

I am hiding my address bar, in Safari on an iPhone using this script: window.addEventListener("load",function() { setTimeout(function(){ window.scrollTo(0, 1); }, 0); }); The problem is if the page ...
1
vote
0answers
2k views

iScroll: How do I hide the IOS Safari address bar

I'm trying to hide the address bar on my iPhone site. Naturally, I tried this first: window.addEventListener("load",function() { // Set a timeout... setTimeout(function(){ // Hide the ...
0
votes
0answers
182 views

Address bar of mobile app should appear only when user tries to drag the header down

I am new to mobile app development and facing an issue with the address bar. I've used jQuery Mobile framework and Mobile Boilerplate to develop this app, and achieved the fixed header and footer ...
0
votes
3answers
109 views

Is facebook's content dynamically loaded?

When a link is clicked on facebook, the top header bar doesn't flicker at all. I'm used to seeing this effect on pages where the content is loaded via ajax, but on Chrome, the url is changing, and, so ...
1
vote
0answers
166 views

Android Address Bar and Bookmarklets

I am currently working on a bookmarklet and have encountered something a little weird (and frustrating) with Android's Browser (seems to be device independent). As you well know, when viewing a web ...
0
votes
1answer
951 views

Google Chrome extension - how to remove entry from top sites list (Omnibox suggestions)?

I can easly remove entry from history: http://code.google.com/chrome/extensions/history.html#method-deleteUrl but this webpage is still showing up in suggested sites in address bar (called Omnibox). ...
0
votes
1answer
187 views

Default the page focus to address bar

After the page redirect the focus is removed from address bar of the browser. But I want that after redirect my new page should be loaded and the focus to be to the address bar of the browser. Is it ...
0
votes
1answer
88 views

Using Javascript to return the selected text in the address bar in Firefox?

I'm trying to write a bookmarklet that will call encodeURI on the selected text in the address bar of Firefox. I know about document.location but it doesn't quite cut it because I want the user to be ...
0
votes
1answer
229 views

Making a Unified address search bar in ios 5?

Help making a Unified address bar in ios 5 for a Browser App? So here is my address bar. -(IBAction)url:(id)sender { NSString *query = [urlBar.text stringByReplacingOccurrencesOfString:@" " ...
0
votes
1answer
19 views

#! Appearing after certain Html Pages on website

It may be a noob question but is this something to do with my webhost. i go to say www.dgimages.co.nz in the address bar and it brings up the page then the address bar adds /#!/ or on certain html i.e ...
0
votes
3answers
402 views

How to change a site background color using the browser's address bar?

When I type in the address bar in Google Chrome or any other browser: javascript:alert("hello");​​​​​ It works, but javascript:document.body.style.background="Red"; doesn't. Why is that? How to ...
1
vote
1answer
2k views

How to indicate a webpage loading progress in a UIWebView? [duplicate]

Possible Duplicate: How to use UIProgressView while loading of a UIWebView? In my app i have a UIViewController with a UIWebView and a toolbar as a subviews. The toolbar has a UITextField ...
2
votes
5answers
4k views

How to remove parameters in URL and display it in address bar without causing redirect in Javascript?

I have found numerous answers on how to extract the URL without the parameters. How do you rewrite the URL in the address bar without causing the page to reload with the new URL? shortURL = ...
8
votes
4answers
322 views

How can I prevent a form from being submitted more than once within 5 minutes?

I recently found a huge security problem with my PM system that allows users to send a message as much as they want with a for loop in the address bar. Someone put this into the address bar: ...
0
votes
1answer
355 views

Url User Friendly, hide original address with variables

this is my simple htaccess that redirect all calls to index.php or to error.php It work fine but I would hide the original address from the address bar. #Options +FollowSymLinks RewriteEngine On ...
0
votes
1answer
249 views

Random characters being added to url in address bar (Session?)

In the address bar of my web app the pages are displayed correctly but in the address bar there is an added set of characters in the format (S(<random chars>)) Example: ...
0
votes
1answer
987 views

HTML5 Boilerplate Mobile not hiding 'Address Bar' mobile safari

I'm using thee latest awesome HTML boiler plate - HTML 5 BOILERPLATE Now if you open this link in mobile safari on iphone - HTML 5 BOILERPLATE - once the page has fully loaded, the address bar slides ...
10
votes
2answers
19k views

How to remove Address Bar in Safari in iOS5?

Old trick with window.scrollTo(0,1); doesn't work. And even worse, the address bar moves only a bit and gets stuck halfway out sometimes.
3
votes
1answer
8k views

why doesn't the favicon file show in the address bar of google chrome?

I have put favicon.ico file in the root directory.The favicon file is shown in the address bar and title bar of firefox and IE but is shown only in the title bar of google chrome. Why is that ?
1
vote
1answer
490 views

Why is the address bar not editable?

Sometimes in websites when you click on some link a new browser windows appears where there's no back button and address bar is not editable,it's locked (greyed out) so you can't change the URL. Just ...
0
votes
6answers
329 views

Is there any easy way to change the address bar background?

I would like to change the address bar background in either Firefox or Internet Explorer to indicate weather I am running the test application or the live. Is there any easy way to do it using HTML, ...
0
votes
1answer
534 views

url-encoding in browser address bar

When I put some non-alpha-numeric symbols in browser address bar, they got url-encoded. For example, http://ru2.php.net/manual-lookup.php?pattern=привет turns into ...

1 2