Return to Snippet

Revision: 31066
at August 28, 2010 08:13 by ichnoweb


Initial Code
function understands_video() {
	return !!document.createElement('video').canPlayType; // boolean
}
if ( !understands_video() ) {
// Must be older browser or IE.
// Maybe do something like hide custom
// HTML5 controls. Or whatever...
	videoControls.style.display = 'none';
}

Initial URL


Initial Description


Initial Title
HTML5 Video Test

Initial Tags
video, html5

Initial Language
JavaScript