Skip to content

Instantly share code, notes, and snippets.

@nathancarnes
Created August 15, 2011 18:19
Show Gist options
  • Save nathancarnes/1147351 to your computer and use it in GitHub Desktop.
Save nathancarnes/1147351 to your computer and use it in GitHub Desktop.
$(document).ready( function(){
$('embed').hide();
$('#video_switcher a').click( function(){
$('.vid:visible').hide();
$( $(this).attr('href') ).show();
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment