Tagged Questions

Browser history refers to the list of web pages a user has visited recently—and associated data such as page title and time of visit—which is recorded by web browser software as standard for a certain period of time.

learn more… | top users | synonyms

16
votes
3answers
4k views

Is monitoring location.hash a solution for history in XHR apps?

As is well known, in XHR (aka AJAX) web applications no history for your app is build and clicking the refresh button often moves the user out of his/her current activity. I stumbled upon ...
15
votes
5answers
2k views

Is History API broken on iOS? (Location bar doesn't update on pushState)

Filing this under the either the I Can't Believe No One Noticed This Before or the I Must Be Missing Something categories: It appears that if you do a simple window.history.pushState on iOS, the ...
7
votes
3answers
436 views

Is My Page Being Loaded from the Browser Cache?

I have a "new items" badge on a page that I want to update immediately the page is loaded from the cache (i.e. when hitting "Back" or "Forward" to return to this page). What is the best way to ...
5
votes
3answers
314 views

Can I remove a sites entry in the browsers history by clicking a link?

I am working on a website for a womans shelter and would like to include a link to leave the site and remove its entries in the browsers history. The objective is to cover the tracks of a person ...
5
votes
3answers
454 views

How can I detect client-side when a page load is the result of an AJAX history point?

I'm trying to prevent a "flicker" effect that is occurring on my ASP.NET page which occurs when a user navigates to the page via the browser back button after having navigated away from it. The ...
5
votes
3answers
2k views

How to access Google Chrome browser history programmatically on local machine

I want to write a simple program which shows my internet activity over a period of time (which site I visited, how many times and so on). I mostly use Google Chrome browser. I found out Chrome stores ...
4
votes
1answer
74 views

Can I know when people open a link on my site in new tab?

What I want to know is when people click a link on my site (internal link - not to another websites) if they just clicked it or if the ctrl-clicked it (or right click - open in new tab). I use PHP. ...
4
votes
4answers
91 views

Stop browsers storing history of a visit

I am currently developing a website for a women's refuge. As this is very sensitive information for those using the site I'd like to stop the browser from storing any history of their visit. Is this ...
4
votes
2answers
580 views

How to dected when history.pushState and history.replaceState are used?

Is there some event I can subscribe to when the history state is modified? How?
4
votes
1answer
730 views

HTML5 History Tutorial

Anyone knows of any good tutorial/guide that explains a proper approach for using HTML5 History with Pushstate and Onpopstate event?
4
votes
4answers
501 views

remove specific field after clicking back in browser or using history.go(-1)

i have a form with a capacha, if the capacha was entered wrong, after submit the page is doing a "history.go(-1)" and all fields include the capacha input are back on the screen right now i have a js ...
4
votes
2answers
2k views

Can you use hash navigation without affecting history?

I'm afraid it might be impossible but is there a way to change the hash value of a URL without leaving an entry in the browser's history and without reloading? Or do the equivalent? As far as ...
4
votes
3answers
194 views

Getting ajax history

Is it possible to get a history of all past ajax calls from the browser? If not, are there any ffx plugins or similar that will store all your ajax request in a similar way to the normal browser ...
4
votes
2answers
7k views

Delete browser history using jQuery

I have an ajax application that is based on jQuery. I enabled browser history using jQuery history plugin. But we find out that the application generated too much history. Especially, we provide ...
4
votes
4answers
7k views

How do you access browser history?

Semanticator is an e-Marketing tool that claims to choose which web page to display based on where you were before. That is, if you've been browsing truck sites and then go to Ford.com, your first ...
3
votes
0answers
91 views

Difference in history implementation by backbone.js, davis.js and history.js

All these 3 libraries allow to manipulate history object. OK, backbone does a lot of more but let consider only it history part. http://documentcloud.github.com/backbone/#History ...
3
votes
1answer
157 views

Update browser's URL without reloading the page

Is it possible to change the URL shown in the browser's address bar without having the browser go to that page? Such as, for example, after updating a page's content via an AJAX call? My ...
3
votes
3answers
75 views

What are the standard techniques/libraries for back button/linking support in heavily Ajax pages?

I am just coming back to web development after a while away and am now building heavily Ajax-ified pages to the point of doing loading/hiding of whole sections of the site with javascript and am ...
3
votes
1answer
751 views

Hack IE 8 back button / force resend?

When I go back with IE 8 I get the error "Webpage has expired Most likely cause: •The local copy of this webpage is out of date, and the website requires that you download it again. ...
3
votes
5answers
414 views

AJAX Links Not Detected By A:Visited

I'm noticing that a:visited styles don't work on links that are requested via JavaScript. On a standard user click though, the exact same link registers as visited, both immediately and on subsequent ...
3
votes
1answer
460 views

Ideal solution for seamless music playback across “page loads”? Using javascript to load pages

I am in the process of developing an online music magazine. We have a html5/flash music player, and this forms a major part of the website. But the site also has a lot of articles and stuff. So ...
3
votes
2answers
1k views

History.Back with refresh

I would like to have the History.back(); functionality with a complete refresh of previous page. Any idea how to do that (and make it work in IE, FF and chorme) Larsi
3
votes
4answers
285 views

Preserving Browser History via a Javascript Bookmarklet

I'm working on a bookmarklet that suggests links when you click on it. I imagine after clicking one of those links, when someone hits the back button, the intention is to go back to the list of links ...
3
votes
2answers
845 views

Chrome doesn't cache hidden form field values for use in browser history

I have a ASP.Net web form that contains both text box fields and hidden fields. The hidden field values are modified dynamically using client side JavaScript. Posting the form, inspecting the values ...
3
votes
3answers
2k views

GWT back button browser

For example current page is www.google.com. But I typed a different website address in address bar and clicked. This site has fully GWT code. But I like to back to the previous page of ...
3
votes
3answers
366 views

Does back/forward in the browser change javascript variables?

<script type="text/javascript> var x = 0; //this occurs in the beginning of the page. $("#button").onclick{ x = 1; } </script> Let's say the variable "x" changes to 1. Then the user ...
3
votes
3answers
1k views

Jquery: mark links as visited without opening them?

I have no intention of just altering the link (I hear that's impossible, but if it's not I'd love to know how). I'm fine with adding it to the the browser history if that needs to be done. I'd like ...
3
votes
4answers
4k views

form POST in iframe without affecting history

Is it possible to submit a form inside an iframe without affecting the browser's history? I've implemented sending a cross domain POST request. It uses Javascript to create and submit a form inside ...
3
votes
2answers
553 views

How do I preserve dom state in the browser history after dynamic dom manipulation?

Is there a general purpose solution for preserving dom state so that when a user returns to a page by using back/forward, the whole page is in the exact state that they left it? This post asks and ...
3
votes
4answers
3k views

Can I update window.location.hash without having the web page scroll?

Using JavaScript, is there a way to update window.location.hash without scrolling the web page? I have clickable title elements that toggle the visibility of a div directly beneath them. I want the ...
2
votes
3answers
130 views

javascript html5 history, variable initialization and popState

main question Is there a javascript way to identify if we are accessing a page for the first time or it is a cause of a back? My problem I'm implementing html5 navigation in my ajax driven webpage. ...
2
votes
1answer
70 views

Backbone.js in a not SPA application issues when browsing history

I started developing with Backbone.js recently. In this application I have a screen where I can filter a lot of rows by multiples filters, for instance: date, status, etc. The problem is that it is ...
2
votes
1answer
85 views

ASP MVC3 Ajax razor view, How to enable browser history?

I am working in ASP.NET MVC 3 application, I am using razor view. I have a main page which has 4 links. These links are used to render partial views into the main page. currently I am using ...
2
votes
2answers
128 views

Clear browser history in jquery or javascript so that the user can not click the back button?

I have scenario where the user clicks "log off" and is redirected to the home page. However when he redirects to the homepage if he clicks the back button of the browser he can return to the working ...
2
votes
1answer
84 views

Programmatically acess Google chrome history

I want to index all the user actions and websites in google chrome. i understand that google chrome index all the data in sqlLite database. how can i Programmatically access the chrome web history in ...
2
votes
2answers
36 views

jQuery : How to find the url that the user has typed in the browsers address-bar during body-unload event?

I have a webpage with URL say http://www.crunchbase.com Now, if the user goes away from this website by typing a new URL in address bar, say http://www.techcrunch.com, and hits submit, the following ...
2
votes
0answers
135 views

Clear forward history on popstate event

I am developing an application which uses views that gets added to the history through history.pushState() function The views are different steps in a form where a user is meant to be able to step ...
2
votes
0answers
323 views

HTC wildfire clear history does not clear browser history

I have developed my app to display browser history. I query the android.provider.Browser.BOOKMARKS_URI table to fetch data & update my UI. This works well on Google Nexus S, but HTC Wildfire gives ...
2
votes
4answers
155 views

Can jQuery listen to browser events?

Can jQuery listen to browser events? I want to attach a listener to the browser's back and forward buttons using jQuery. Is there anything what I can do, like with keypress, mousewheel, click, to ...
2
votes
4answers
153 views

passing different variables to same page

I am trying to build a web app mainly using html and javascript. I use a number of different variables in the app that are passed through the url. here are the problems, I have some links that link ...
2
votes
1answer
301 views

Move backward through history skipping the same page with different query string

When I refresh a page or redirect to the same one using the same url, I can click in a button with "window.history.back();" code and go back to the previous page. However, If the query string was ...
2
votes
1answer
180 views

How to change chrome to behave like firefox when using the history.pushState /popstate

I am using ajax to populate parts of my html pages (when the page load or based on user click). When I press the back and forward button using Firefox (4) or Safari (5.0.5) everything is fine. But ...
2
votes
2answers
87 views

How to make a View render Fully or Partially?

I have a HomeController with an action About. I want to achieve this behavior: Case #1 User open the page /home/about and the view render fully (return View();) Case #2 User is on the homepage and ...
2
votes
2answers
1k views

Current state of Jquery history/back-button plugins?

I spent a long time looking into this about a year ago, I tried: Jquery BBQ plugin Jquery History plugin jquery .address plugin I found the jquery.address plugin to be the best, but these things ...
2
votes
1answer
529 views

HTML history state issues on OS X Chrome 10.0.648.151

I'm trying to figure out how to use HTML5's history functions. Here's my basic code: $(document).ready(function () { var stateObj = { foo: "bar" }; history.pushState(stateObj, "page 2", ...
2
votes
2answers
393 views

Have jQuery fire Ajax request when when back button is pressed

I have a page with 80+ dynamically generated input boxes, when the user submits the form to another .php page and one of the inputs contains a value that is not numeric, it will send them back to the ...
2
votes
1answer
140 views

Browser Bookmarklet - How to track browser history?

There's a bunch of new services that, once installed, track your browser history. Like.fm, for instace, tracks all the songs you listen to. How hard is this? How is it done?
2
votes
1answer
735 views

Save history of UIWebView and reload it

I have a view with a subview of UIWebView and the view is obviously managed by a view controller. Say, I browse with this UIWebView for sometime and then navigate to a different view managed by a ...
2
votes
1answer
74 views

Legally parsing browser history

I want to create a service that suggests things based on the sites one has visited. It would be a user controllable process. In other words, the service would start "recording / suggesting" from the ...
2
votes
3answers
600 views

android: delete history after homepage load

hey, an android noob needs help here. i'm trying to get my webview browser to delete the browser history after the homepage has been loaded (so the next user that comes around this public app doesn't ...

1 2 3 4 5