JochenJung
JochenJung

Reputation: 7213

Emulating HTML5 features on legacy browsers using Javascript

Is there something like a HTML5 enabling script, that simulates the function of new HTML5 elements for older browsers?

I know there is html5shim, but that only makes the elements style-able.

I was more looking for a solution, that makes new HTML5 elements behave like they should.

Here are some examples:

Is there a solution, that provides all of them as one? And all the other new HTML5-Elements as well?

Upvotes: 2

Views: 812

Answers (1)

Raynos
Raynos

Reputation: 169551

HTML5 polyfills

has a large list of all polyfills.

There is no large project that "emulates" all of HTML5. Mind you Modernizr is probably the most complete project to that end.

My personal recommendation is find and use polyfills as and when you need them. Loading less features is always better.

Upvotes: 2

Related Questions