Resource for backward compatibility in HTML5?

Are there any resources or JS libraries for emulating HTML5 functions if the browser does not fully support HTML5.

I am specifically looking for mobile web applications.

Thank,

Sri

+3
source share
3 answers

Maybe you should try HTML5shiv .

+3
source

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

It does not make any automatic corrections (I don’t think so, anyway ...), but its reliable base for adapting your application to browsers that do not support what you need.

, - JavaScript .

+1

Most mobile browsers do not have good js support. So it's hard to emulate HTML5 or something else.

0
source

Source: https://habr.com/ru/post/1753115/


All Articles