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, I'm not holding my breath, but does anybody know if they're coming in IE9?

link|improve this question

Depressing indeed if IE9 does not add this. – Eric Wahlforss Nov 28 '10 at 19:12
10  
For what it's worth History.js provides the same HTML5 API while gracefully degrading any browser that doesn't support it (including support for data and titles, and replaceState functionality). Using that would mean you wouldn't have to change your code for the IE9 changes. – balupton Jan 30 '11 at 13:53
@balupton Thankyou for making History.js. It makes the world a better place. – David Johnstone Apr 2 '11 at 12:01
2  
On the other hand, some argue against falling back to hashes. danwebb.net/2011/5/28/it-is-about-the-hashbangs – David Johnstone Jun 1 '11 at 4:01
feedback

2 Answers

up vote 68 down vote accepted

Probably the best site for browser compatibility information is CanIUse. Here's the section on history.

Summary - IE9: no, IE10: yes (as of platform preview 3)

The first Release Candidate of IE9 (released 10th Feb 2011) does not support history.pushState or history.replaceState. Generally no new features are added after a product gets to RC stage so it is very unlikely that the final IE9 will support these methods.

Microsoft have a good overview for developers of the features IE9 does have.

Update: Internet Explorer 9 was launched (on 14th March 2011) and definitely does not support history.pushState() or history.replaceState().

Update 2: The current platform preview of IE10 still does not support pushState / replaceState.

Update 3: Platform Preview 3 of IE10 supports the history API! Details

link|improve this answer
67  
I bloody hate them sometimes. – Jonatan Littke Apr 27 '11 at 10:26
12  
noobs can't even build a decent browser. they should just use webkit since they can't figure it out. – devth Jul 12 '11 at 22:58
4  
@devth, they were the first to release decent GPU-acceleration. hardly noobish? – DuckMaestro Sep 14 '11 at 0:56
2  
@DuckMaestro they certainly weren't the first to release decent GPU-acceleration. I wrote a pretty graphics intense canvas game and it ran well in FF4, Safari 5, and Chrome 9, but ran poorly in IE9. I had to cut frames and effects to get it to work. The benchmarks were a lie. I had so much hope for IE9 and it was nothing but a total let down. – Tim Harper Nov 9 '11 at 21:14
1  
@Derek true, but at least it'd work. – devth Apr 30 at 17:24
show 1 more comment
feedback

IE9 and the current IE10 don't support it.

You can however use a work around using a Polyfill to get the functionality - History.js https://github.com/balupton/history.js.

Modernizr do a good job listing HTML 5 Polyfills here https://github.com/Modernizr/Modernizr/wiki/HTML5-Cross-browser-Polyfills.

The caveat is that it will add a query string to your URL in browsers that only support HTML 4 features.

link|improve this answer
IE10 will support it. – BWRic Apr 16 at 16:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.