Skip to content

Instantly share code, notes, and snippets.

@mrkurt
Created February 9, 2009 18:21
Show Gist options
  • Save mrkurt/60899 to your computer and use it in GitHub Desktop.
Save mrkurt/60899 to your computer and use it in GitHub Desktop.
com.arstechnica.common.journals_and_popular = function(){
$('#most-popular-and-journals-box-header li').live('click', function(){
$('#most-popular-and-journals-box-header li').removeClass('selected');
$(this).addClass('selected');
var target = '#' + $(this).attr('id').replace('-tab', '-box');
$('#most-popular-and-journals-box > div')
.filter('#most-popular-and-journals-box-header').hide()
.filter(target).show();
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment