All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.mootools-1.2.menu-fx.js Maven / Gradle / Ivy

There is a newer version: 1.4
Show newest version
window.addEvent('domready', function() {

  $$('.MGroupContent').setStyle('display', 'block');

  var selected = $('MSelected');

  var current = (selected) ? selected.getParent() : false;

  $$('div.MGroup').each(function(div) {
    var link = div.getElement('a');
    var block = link.getNext();

    var fx = new Fx.Slide(block);

    if (block != current) fx.hide();

    link.addEvent('click', function() {
      fx.toggle();
    });

  });

  $$('.CTitle').each(function(heading) {
    new Element('a', {
      'href': '#MainTopic',
      'class': 'toTop'
    }).setHTML('top').injectBefore(heading.getFirst());
  });

  new SmoothScroll();

});

document.write('');




© 2015 - 2025 Weber Informatics LLC | Privacy Policy