Tagged Questions

http://www.w3.org/TR/html5/history.html http://diveintohtml5.org/history.html

learn more… | top users | synonyms

45
votes
7answers
14k views

Good tutorial for using HTML5 History API (Pushstate?)

I am looking into using the HTML5 History API to resolve deep linking problems with AJAX loaded content, but I am struggling to get off the ground. Does any one know of any good resources? I want to ...
36
votes
4answers
10k views

Does Internet Explorer support pushState and replaceState?

Does anybody know if Internet Explorer supports the history.pushState() and history.replaceState() methods for manipulating browser history? Considering these are just being implemented in Firefox 4, ...
17
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 ...
14
votes
2answers
736 views

How to get notified about changes of the history via history.pushState?

So now that HTML5 introduces history.pushState to change the browsers history, websites start using this in combination with Ajax instead of changing the fragment identifier of the URL. Sadly that ...
13
votes
2answers
856 views

HTML5 History API & android

I am playing around with history API on Android phones but I can't seem to get it to work completely. What is really bugging me is that I can't get the URL to change with pushState. Many more sites ...
12
votes
1answer
677 views

Workaround for history animation in Safari for OS X Lion?

In Safari for OS X Lion, when you use the swipe gesture to navigate forward or backward in history, the window animates as though you were moving through physical pages. The problem with this ...
8
votes
3answers
343 views

How does Facebook show browser loading progress during AJAX Page Loads?

In order to keep the IM Client logged in at all times Facebook avoids full page loads by using AJAX to load its pages before inserting them into the document. However, during Facebook AJAX requests ...
8
votes
4answers
520 views

“Single-page” JS websites and SEO

There are a lot of cool tools for making powerful "single-page" JavaScript websites nowadays. In my opinion, this is done right by letting the server act as an API (and nothing more) and letting the ...
7
votes
1answer
195 views

How does pushState protect against potential content forgeries?

As seen in GitHub's blog, they've implemented HTML5's JavaScript pushState feature for tree browsing (for modern browsers), bringing AJAX navigation without Hash Bangs. The code is simple: ...
7
votes
1answer
1k views

pushstate and seo

Many people have been saying, use pushState rather than hashbang. What I don't understand is, how would you be search engine friendly without using hashbang? Presumably your pushState content is ...
7
votes
2answers
2k views

Which browsers support the HTML5 History API?

Can someone point me to a compatibility chart for browsers that support/don't support the HTML5 History API? Spec: http://www.w3.org/TR/html5/history.html Tutorial: ...
6
votes
2answers
545 views

How Does Github Do pushState Without Hash Tags?

I've been researching the best way to utilize HTML5's history api aka psuhState with a proper fallback for HTML4 browsers. Github uses the history api for its tree browsing (the following link is ...
5
votes
1answer
1k views

Using HTML5 pushState() in IE9

Is there any way to use HTML5 History API (pushState) in IE9? If there is a solution for all other browsers that would be great!
4
votes
1answer
761 views

Reusing backbone views/routes on the server when using Backbone.js pushstate for seo/bookmarking

I'm doing some due diligence on backbone for a single page app and wonder if it is possible to re-use the same views/routes from the client on the server side, so that when google visits a pushstate ...
4
votes
2answers
173 views

HTML5 History API - What is the max size the state object can be?

The pushState method accepts a state object. Firefox documents say the maximum size of this object is 640kb. Is it defined in the specs what the smallest maximum size a browser can implement is? ...
4
votes
3answers
266 views

How to cope with refreshing page with JS History API pushState

A small website I was creating (more like fiddling) uses AJAX to load each page. Previously I was changing the hash of the url, this worked great but was ugly, and the user could refresh the page, and ...
4
votes
1answer
234 views

HTML: Changing the URL without reloading the page?

Check out this link: http://google.blogspot.com/view/timeslide And click on the post and as you can see the URL is changing but without a # or something like that, It changes like the page would ...
4
votes
2answers
641 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
788 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?
3
votes
1answer
238 views

Account for Backbone.js pushState routes with node.js express server?

pushState support was introduced with Backbone.js' version 0.5 update. From the backbone documentation: Note that using real URLs requires your web server to be able to correctly render those ...
3
votes
1answer
43 views

How to detect browser incompatibility for pushState function

This function disables the default action for a link, and changes the URL using the pushState function. I need to be able to detect if a browser does not support this function, so that I can stop the ...
3
votes
1answer
990 views

pushstate is not working correctly in backbone.js

if I am using backbone with pushstate, how should I format my links ? currently I am doing like this. <a href="task/create">create task</a> if I use above format, It actually send get ...
3
votes
1answer
222 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 ...
2
votes
3answers
78 views

Running javascript code called by AJAX

My site uses pushState to load pages. I have one issue, I want to use javascript on one of the pages but can't because it loads everything with AJAX. So what do I do? I've been told something about ...
2
votes
1answer
627 views

pushState fallback for Internet Explorer?

I know that IE does not support pushState, but I want a way for my users with a modern browser to enjoy the benefits while the users using older browsers don't make use of it. Currently, the ...
2
votes
1answer
77 views

HTML5 History API with Standard links

So, after redesigning my site, I thought I would use the HTML5 history API, when I saw brilliant use of it here: http://diveintohtml5.ep.io/examples/history/casey.html Problem is, the code provided ...
2
votes
1answer
1k views

CodeIgniter + jQuery(ajax) + HTML5 pushstate: How can I make a clean navigation with real URLs?

I'm currently trying to build a new website, nothing special, nice and small, but I'm stuck at the very beginning. My problems are clean URLs and page navigation. I want to do it "the right way". ...
2
votes
1answer
399 views

Moving back to a pushState entry that used ajax

I'm having an issue with the following situation. User visits site User clicks link which uses history.pushState to update the url Partial page content loaded via ajax (using jQuery) User clicks ...
2
votes
2answers
470 views

HTML5 history APi

How do i use HTML5 history api. I did go through the https://developer.mozilla.org/en/DOM/Manipulating_the_browser_history. That confused me. All that i want is to change the url on ajax calls so that ...
1
vote
1answer
66 views

Rewriting nginx for pushState-URL's

I am trying to get nginx to work with my pushState-based URI handling that backbone.js manages for me in an Javascript app. Right now accessing URI's with one level, eg. example.com/users works ...
1
vote
4answers
101 views

How do you handle the back button in jQuery?

I just can't find a satisfying way to handle the Browser's History. Sure there are lovely plugins like History.js, which works fine for smaller things. But let me give you an example: I have a ...
1
vote
3answers
92 views

JavaScript: Replace element with content from another HTML

I would like to solve the following problem: Given a link on a Web page, I would like to replace the content of a specified div element with the content of a div element of another page. Say, just ...
1
vote
1answer
130 views

Silently change url to previous using Backbone.js

Using Backbone.js, is it possible to make the router navigate to the page where it came from? I'd like to use that for the case where I change my URL when a popup appears, and I want go change it ...
1
vote
1answer
177 views

popstate returns event.state is undefined

I am learning about history in HTML5, in this example (open the JavaScript browser console to see error) the event.state.url returns: Uncaught TypeError: Cannot read property 'url' of undefined ...
1
vote
0answers
49 views

Get controller and action names with pjax?

In my application I use this technique: <body id="action" class="controller"> Is there a way to pjax send it along with the #container?
1
vote
0answers
142 views

bbq.pushState() with jQuery load

I am building my website with dynamically loading content. I have this code right now for pushState() $("a.link").click(function(e) { var href = $(this).attr( "href" ); ...
1
vote
1answer
175 views

Google crawling, AJAX and HTML5

HTML5 allows us to update the current URL without refreshing the browser. I've created a small framework on top of HTML5 which allows me to leverage this transparently, so I can do all requests using ...
1
vote
1answer
49 views

updating browser address field correctly on `pushstate`

I am loading data in the web page via ajax, and using pushstate and popstate trickery to change the browser address field. The problem is that my ajax URLs are like so 2011/07/25/foo.txt ...
1
vote
2answers
382 views

How to find if a browser supports History.Pushstate or not?

I want to change URL without without reloading the page. The possible solution I found is window.history.pushState('page2', 'Title', '/page2.php'); but some browser like Firefox 3.5, IE6+ does ...
1
vote
1answer
57 views

AJAX / History - When is the right time to call the `pushState` method in AJAX app?

I'm working with AJAX and history object (with the .pushState method). I just want to know when is the right time to call pushState method? Is it before request? after request? or on what state of ...
1
vote
1answer
498 views

Fallback functions for history.pushState() and window.onpopstate in HTML5

How do I add fallback functions for history.pushState() and window.onpopstate ? I need an if..else kind of logic. If the browser supports proceed, else I need an alternative logic. Even in some modern ...
1
vote
2answers
743 views

How to use javascript history API

In github's blog post about how they created the new tree slider, they give this as the code used: $('#slider a').click(function() { history.pushState({ path: this.path }, '', this.href) ...
1
vote
2answers
872 views

window.history.pushState not going back in history

Hey guys, I have a little problem experimenting with the history.pushstate event. I set it up so that the url of the page would be the actual URL of the page loaded via AJAX and that works just fine. ...
1
vote
1answer
696 views

HTML5 history pushState link back

After seeing another post earlier today on the HTML5 History API and reading the tutorial at Mozilla, I've been able to implement a basic working demo for using this API to allow URL "rewriting" ...
1
vote
1answer
617 views

Can use pushState

Does anyone know of a library that determines if pushState can be used? I was using this: if(window.history.pushState){ window.history.pushState(null, document.title, path); }else{ ...
0
votes
0answers
18 views

Backbone.js: workaround for implementing slash based URL using pushstate in Internet Explorer

I have made a complete mess of things right now. I updated to Backbone.js 0.9.1, updated to slash based URLs and started using pushstate:true. 5 days later I test my app on IE9 and the URLs just don't ...
0
votes
0answers
12 views

Detecting a QWebView's JavaScript pushState event

I'm a complete Qt newbie (and my C++ is extremely rusty to boot). I have the following listeners configured (and more) in a Qt4.8.0 app using a QWebView: connect(webView, SIGNAL(loadFinished(bool)), ...
0
votes
1answer
25 views

How to use PushState routers in Backbone.js

I am using a router below App.Router.PersonRouter = Backbone.Router.extend({ routes: { "": "homepage", "/p/:id": "getpost", "/p/:id/*file": "download" }, homepage: ...
0
votes
0answers
15 views

Getting actually url of the page on android browser with js

On desktop browsers alert returns tomaszgemski.com/test/url and on android browser we'll see tomaszgemski.com/test/index.html but url in adress bar will be changed correctly. Why? Is possible to get ...
0
votes
0answers
9 views

Getting url after history.pushState on android with javascript

My web page loads data with ajax and if page is loaded I change url using window.history.pushState but after change window.location.href on android still returns me previous link (link is changed on ...

1 2