Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Created February 21, 2017 13:58
Show Gist options
  • Save Farmatique/500a770fee048bdd7c41357b34c411b5 to your computer and use it in GitHub Desktop.
Save Farmatique/500a770fee048bdd7c41357b34c411b5 to your computer and use it in GitHub Desktop.
show/hide controls on hover for video element
jQuery("video").hover(function(event) {
if(event.type === "mouseenter") {
jQuery(this).attr("controls", "");
} else if(event.type === "mouseleave") {
jQuery(this).removeAttr("controls");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment