Skip to content

Instantly share code, notes, and snippets.

@sms420
Created May 28, 2009 05:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sms420/119108 to your computer and use it in GitHub Desktop.
Save sms420/119108 to your computer and use it in GitHub Desktop.
toggle_ME.js
//toggle_ME.js
jQuery(document).ready(function() {
jQuery(".menu_item img").hide();
jQuery(".menu_item a").click(function () {
jQuery(this).siblings('img:visible').hide('normal');
jQuery(this).siblings('img:hidden').show('normal');
}); //closes click function
}); //closes document dot ready
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment