Skip to content

An implementation of event delegation (with fixes for focus/blur/submit/reset events) written with MooTools.

Notifications You must be signed in to change notification settings

nickstenning/moodelegate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

MooDelegate

A simple library for event delegation using the MooTools JavaScript library. At its simplest, delegator.js implements a #delegate method on Element, so you can call:

$('myelement').delegate('li.delete', 'click', function () {
    this.dispose();
});

This would make sure that any child of 'myelement' that was a list item with the class "delete" would be removed from the DOM when it was clicked. This applies no matter when the list item was added to the DOM: even if it was added after the call to delegate.

A more advanced (and yet simpler) way to use MooDelegate is to use the included Controller class:

HTML:

<div id="textsizeController">
  <span>Hello</span>
  <a href="#" id="bigger">Bigger</a>
  <a href="#" id="smaller">Smaller</a>
</div>

JS:

var TextSizeController = new Class({
  Extends: Controller,
  
  // ... see examples/textsize.html for the full example.
  
  controls: {
      '#bigger click': function () {
        this.increaseSize();
      },
      '#smaller click': function () {
        this.decreaseSize();
      }
  }

});

window.addEvent('domready', function () {
  new TextSizeController($('textsizeController'));
});

OK, so it's a silly example, but you should get the idea. Once you've made that call to new TextSizeController in the above example, you could remove the "bigger" button from the DOM, to prevent the user making the text bigger, and then put it back in, and it would work just as expected.

About

An implementation of event delegation (with fixes for focus/blur/submit/reset events) written with MooTools.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages