Skip to content

Instantly share code, notes, and snippets.

@willduncanphoto
Created July 29, 2010 07:15
Show Gist options
  • Save willduncanphoto/497481 to your computer and use it in GitHub Desktop.
Save willduncanphoto/497481 to your computer and use it in GitHub Desktop.
var rules = {
// JQUERY: TODO
'.admin div.dropdown': function(element){
var replacement = $(element).down('.dropdown_replacement');
var menu = $(element).down('ul.dropdown').hide();
var toggle = function(){
menu.visible() ? menu.hide() : menu.show();
}
replacement.observe('click', toggle);
}
}
Behavior.register(rules);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment