Nicolai Lissau
Nicolai Lissau

Reputation: 8312

Can i use HTML5 history in IE8?

Caniuse.com clearly says that IE8 and IE9 does NOT support HTML5 History, however if i emulate IE8 in Microsoft Edge developer tools, and check with modernizr:

if(Modernizr.history) {
    alert("History is available");
} else {
    alert("History is NOT available");
}

I get that history IS actually available?

Upvotes: 0

Views: 50

Answers (2)

Patrick
Patrick

Reputation: 13974

Emulation is not a reliable way to test things. You should try using the real browser, from something like SauceLabs and browserstack, or using one of the free VMs from https://modern.ie

To answer your question - no.

image

Upvotes: 1

Raimonds
Raimonds

Reputation: 537

Emulation is not the same as actual IE 8, this might be the cause I suggest to set up virtual machine with IE8 and check yourself.

Upvotes: 0

Related Questions