sri
sri

Reputation: 3389

Resource for backward compatibility in HTML5?

Are there resources or JS libraries to emulate HTML5 features, if the browser doesn't fully support HTML5.

I am specifically looking to target mobile web applications.

Thanks,

Sri

Upvotes: 3

Views: 165

Answers (3)

Paul D. Waite
Paul D. Waite

Reputation: 98906

Modernizr is a library for detecting support for HTML5 and CSS3 features.

It doesn’t do any automatic fixing itself (I don’t think so anyway...), but it’s a solid base to use for adapting your application to browsers that don’t support what you need.

Not sure how well it runs on mobile devices — JavaScript performance tends to be pretty slow on mobile.

Upvotes: 1

fravelgue
fravelgue

Reputation: 2893

Most mobile browser don´t have good js support. So it´s difficult you can emulate HTML5 or anything.

Upvotes: 0

fabrik
fabrik

Reputation: 14375

Maybe you should give a try to HTML5shiv.

Upvotes: 3

Related Questions