Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

58
votes
10answers
23k views

Modify Address Bar URL in AJAX App to Match Current State

I'm writing an AJAX app, but as the user moves through the app, I'd like the URL in the address bar to update despite the lack of page reloads. Basically, I'd like for them to be able to bookmark at ...
4
votes
1answer
1k 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.
2
votes
1answer
214 views

Getting the url in address bar in an iframe

I am working on a project in drupal in which i have an iframe loaded in another website. I need to get the url from the address bar. e.g., lets say i have a website embedded in the iframe as ...
2
votes
2answers
3k views

Prevent iPad web app from showing Safari address bar

I have a web app running on Safari on an iPad. I am starting the app from the iPad home page. I want the app to start in full-screen mode, and to continue running in full-screen mode (i.e. not ...
2
votes
3answers
409 views

How to delete IE addressbar history on Vista/Win7?

I asked same question on stackoverflow. First, here is a picture of what I see http://img713.imageshack.us/img713/4797/iedrop.png I need an solution to clear addressbar dropdawn, but not using ...
1
vote
4answers
85 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 = ...
1
vote
2answers
429 views

How to create a split control like the one in the Browser's Address Bar? (Android)

I want to create a search box with the search button directly on the right of the EditText, without any spacing. Looks like the address bar on the internal Browser application. Is it possible or do ...
1
vote
1answer
263 views

redirecting a webpage from site A to site B without changing url

I would like to redirect the user when he/she clicks on a link () to b.com when the user is in a.com without displaying the change in the browser's address bar. How would I do this? Please help. ...
1
vote
5answers
3k views

How can I detect an address bar change with JavaScript?

I have a Ajax heavy application that may have a URL such as http://mysite.com/myApp/#page=1 When a user manipulates the site, the address bar can change to something like ...
1
vote
3answers
162 views

Firefox bar to quickly find API docs

This question is related to this one http://stackoverflow.com/questions/573072/tricks-to-google-for-desired-page-quickly Firefox can do some magic and bring exactly the required pages. E.g. java 6 ...
0
votes
1answer
50 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
36 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
182 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 ...
0
votes
1answer
131 views

Google Chrome extension to read omnibox imput and make a XMLHttpRequest based on it

Say a user types in "testing" in the omnibox. I need an extension to make a page request to http://mywebsite.com?url=testing. I can't use the keyword recognition thing, because this must work for ANY ...
0
votes
1answer
359 views

hide iPhone address bar with 100% height

Many posts on this, but not quite for my situation. My page has flexible dimensions set to 100% width and 100% height, so the typical on-load scroll function isn't working. Any thoughts or other ...
0
votes
3answers
462 views

Get address bar without parameters

Help me please get the value of the address bar of browser without the parameters passed. Without the use of regular expressions and string functions. You can do this? (I use php on apache). enter ...
0
votes
2answers
1k views

URL based Javascript to show all variables in the page

I've seen javascript (and written some too) to show the contents of input tags (useful if the guy before you left a password in an input...), but I want to use JS to show the Javascript variables that ...
-1
votes
0answers
36 views

How to redirect without address bar changes on same domain

I would like to type following address in the address bar of the browser: http://example.com/SUPERSECRETHASHSTRING/myfolder/ while myfolder is located at http://example.com/SOMEFOLDER/myfolder/ I ...