

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Is there any way of moving to HTML 5 and still promise multi browser compatibility?
Yes, follow this approach −
- Move to the HTML5 doctype − <!DOCTYPE html>
- Use <div> or even the new elements like <section>
- Or the newer HTML5 tags <video> or <audio>, you can still use the outdated <object> tag.
- The controls have backward compatibility too. The <input type="email"> works the same as <input type="text"> in browsers that do not support it.
However, if you are working t for legacy Internet Explorer, then use html5shiv. It enables the use of HTML5 sectioning elements in legacy Internet Explorer.
- Related Questions & Answers
- Is there any way to load an extension in chrome browser using Selenium Webdriver?
- Is there any way to skip some documents in MongoDB?
- Is there any way in MongoDB to get the inner value of json data?
- Is there any way to embed a PDF file into an HTML5 page?
- Is there any way to see the MongoDB results in a better format?
- Best Cross Browser Compatibility Testing Tools
- Is there any way to check if there is a null value in an object or array in JavaScript?
- Is there any easy way to add multiple records in a single MySQL query?
- Multi-Way Trees
- 20 Best Cross Browser Compatibility Testing Tools
- Is there any more efficient way to code this “2 Sum” Questions JavaScript
- Is there any Python object inspector?
- Is there any way to use values from a JSON object in a MySQL Select statement?
- Which browser has the best support for HTML 5 currently?
- Difference between HTML and HTML 5
Advertisements