Tagged Questions

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 ...
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 ...
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
579 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 ...
3
votes
0answers
90 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
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
750 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
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
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
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
552 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
129 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
69 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
4answers
152 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
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
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
3k views

jQuery History Plugin

There are a few different jQuery history plugins out there is one better than any of the others... I'm trying to decide which one to go with, any thoughts or any others to try: ...
2
votes
4answers
330 views

How to change the URL displayed in the browser without leaving the page

Is it possible with JavaScript to change the browser's URL, but not leave the page?
2
votes
1answer
188 views

ie7 doesn't recognize a page with different anchors (hashtags) as 2 different pages (hence history doesn't work)

As part of developing some ajax history behavior I encountered a weird thing: (my) ie7 doesn't recognize a page with different anchors (hashtags) as 2 different pages. The consequence is that when ...
2
votes
4answers
1k views

history.back(); doesn't trigger $(document).ready();

I have a webpage that use $(document).ready() to build the interface. Then the user can go to a child page, and to go back to the original page he can press the browser's "previous" button or a ...
2
votes
2answers
124 views

Is site first item in history?

How to find out if site is the first item in history? This doesn't work because of security reasons: if(window.history.item(0)==window.location.href)
2
votes
2answers
2k views

How to clear browsers (IE, Firefox, Opera, Chrome) history using JavaScript or Java except from browser itself?

How to clear browsers (IE, Firefox, Opera, Chrome) history using JavaScript or Java, except clearing it from browser itself?
1
vote
3answers
56 views

Preserve page state for revisiting using browser back button

I have a page that dynamically loads content based on a user pushing a button: ${document).ready(function) { $("#myButton").click(function() { ...
1
vote
1answer
28 views

jQuery Unwanted resetting of the DOM on history.back(-1)

I have this script below used on this site http://ronnidc.dk... When a user checks e.g. [jan] a dot appears on the map below. And when the user clicks the dot, a teaser text containing a read more ...
1
vote
0answers
23 views

How to implement history.js with ASP.NET MVC

Can anyone point me in the right direction with implementing the History.js gist with MVC project over at https://github.com/balupton/history.js Im just getting to grips with MVC and im considering ...
1
vote
1answer
72 views

Hashchange not firing when user clicks on same link

I'm creating an HTML and Javascript client for running in browser which talks to REST API. I'm using RouteMap to set my URLs. So I've kept a convention something like this ...
1
vote
2answers
121 views

How to get HTML5 History persistance with Backbone.js?

I am new to Backbone.js and was wondering how exactly I get history persistance working with Backbone.js, whether it is actually possible or whether I need to resort to History.js. I am building a ...
1
vote
1answer
62 views

Internal Links with jQuery Address

I'm trying to implement the lovely Address plugin to handle internal links for prettier links and use of the back button. I managed to get it to work, however the one thing I noticed, is that when it ...
1
vote
1answer
59 views

How to access iframe history.length

I am trying to understand iframe history. I have created to pages A and B on a localhost server. Using an iframe I load page A first then dynamically change the iframe src to page B. Should this mean ...
1
vote
0answers
50 views

Using replaceState() (or something else) to update the state object rather than replace it

Is there some technique I can use (perhaps something clever with replaceState()) to update the history state object rather than replace it? Given an existing state object that looks like this: { ...
1
vote
1answer
67 views

Chrome History API problems

I'm having problems with a website is Chrome. Most of the site uses ajax/xmlhttprequest for pages loads and the history API to enable the back button. Only the page content is changing with the ...
1
vote
0answers
52 views

Access the history state of the previous page when a user clicks 'back'

Is there a way using JS of accessing the history state of the previous page when a user clicks the 'back' button?
1
vote
1answer
162 views

Browser cache and history back button (hashing, history.js)

I have problem with browser back button. Problem exists for IE and google chrome. I'm creating autoload mechanism for search engine. Mechanism works like google search. Procedure of building: 1) ...
1
vote
1answer
282 views

Firefox Back button not working as expected: javascript displayed instead of html

I am using History.js to make my ajax pages bookmarkable and to have the expected back/forward browser button experience. In Safari all works great but in Firefox 6 if I leave my site and then go back ...
1
vote
1answer
102 views

History search failing to execute in Chrome extension

I am in the process of writing an extension for Chrome to display the users 3 most visited sites. (Yes, I am aware that the "New Tab" page already does this) However, whenever I try to query the users ...
1
vote
1answer
193 views

Does loading unloading iframes in a webpage affects its history?

I have a web page that on click of buttons loads another web page in iframe in a div. On clicking the launch button this is what is done the src attribute of iframe is set to url of required ...
1
vote
3answers
2k views

jquery javascript: adding browser history back with hashtag?

I have a link on my website that says "Fullscreen Google Map". Once I click it, I load a google map into a 100% wide and 100% high position fixed div container. When the link is clicked, I also add a ...
1
vote
1answer
199 views

jQuery autocomplete and back button behaviour?

I'm using the awesome jQuery autocomplete plugin. However I'm a bit of a newbie when it comes to understanding browser behaviour and Ajax, so I have a question. This is the sequence of events: ...
1
vote
3answers
519 views

GWT. Remove anchor part url

Hi I am using GWT and its standart way to support history via "History" class. It is very convenient but how can I remove anchor part from an url? For example: My base url: ...
1
vote
0answers
377 views

history.back button creates problem with session

I am facing problem with the javascript:history.back() function. Following is the scenario. I have two session open with lets say id S1 and S2 for the same user and single application. Now on session ...

1 2