Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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: https://developer.mozilla.org/en/DOM/Manipulating_the_browser_history

like image 222
Kiran Jonnalagadda Avatar asked Jan 06 '11 07:01

Kiran Jonnalagadda


People also ask

Can I use HTML5 history API?

Browser Support For The HTML5 History API At the time of writing the HTML5 history API is supported in all modern browsers (IE, Safari, Chrome, Firefox) except in Opera Mini.

Which browsers does the HTML5 support?

HTML5 is now compatible with all popular browsers (Chrome, Firefox, Safari, IE9, and Opera) and with the introduction of DOCTYPE, it is even possible to have a few HTML features in older versions of Internet Explorer too.

Which browser has the highest support for HTML5?

According to HTML5test.com, Chrome and Opera are ahead of the pack in overall HTML5 compatibility. Firefox comes in a distance second, and IE and Safari trail in third. Of course, these standings can change at any time as browsers release bug fixes, patches, and new versions.

What is HTML5 history API?

The HTML5 History API gives developers the ability to modify a website's URL without a full page refresh. This is particularly useful for loading portions of a page with JavaScript, such that the content is significantly different and warrants a new URL. Here's an example.


2 Answers

This might help : http://caniuse.com/#search=history

like image 125
Romin Irani Avatar answered Oct 16 '22 05:10

Romin Irani


All the modern browsers now do it, except IE (even IE10 no word yet) - though they all implement it differently. You can read about the differences with their implementations here https://github.com/browserstate/history.js/wiki/The-State-of-the-HTML5-History-API

like image 35
balupton Avatar answered Oct 16 '22 07:10

balupton