Skip to content

Instantly share code, notes, and snippets.

@tbbooher
Created February 3, 2009 02:25
Show Gist options
  • Select an option

  • Save tbbooher/57258 to your computer and use it in GitHub Desktop.

Select an option

Save tbbooher/57258 to your computer and use it in GitHub Desktop.
$$('.box').each(
function(b){
var box = b.down('input'), exp = b.down('.explanation');
exp.hide();
box.observe('click', function(e){ exp.toggle();});
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment