Skip to content

Instantly share code, notes, and snippets.

@aaronpowell
Created August 31, 2011 06:15
Show Gist options
  • Select an option

  • Save aaronpowell/1182921 to your computer and use it in GitHub Desktop.

Select an option

Save aaronpowell/1182921 to your computer and use it in GitHub Desktop.
Q8 - Truth is stranger than fiction
var hasVideoSupport = function(o) {
if(!o.canPlayType) {
return false;
} else {
return true;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment