Skip to content Skip to sidebar Skip to footer

Html5 Video Plays On All Browsers Except IE9

I wanted to post this question and answer because I wasn't able to find it anywhere. So if you are playing with HTML5

Solution 1:

First check whether your browser support HTML 5 Video or not

Check browser supporting video or not


Solution 2:

To get it to play on IE9,

You need this full markup:

<!DOCTYPE html>
<html lang="en">
<head></head>
<body>
<video controls="controls">
   <source src="video.mp4" type="video/mp4" />
   <source src="video.ogg" type="video/ogg" />
   Your browser does not support the video tag.
</video>
</body>
</html>

Post a Comment for "Html5 Video Plays On All Browsers Except IE9"