Shortcuts for the new Prototype DOM Builder

May 14th, 2007 . 0 comments
// Lowpro style (http://www.danwebb.net/2007/4/16/low-pro-0-4-released)
$w('a div p form').each(function(e) {
  window['$' + e] = function() {
    return new Element(e, arguments[0]);
  }
});
// $form({action: '/foo', method: 'post'});

Continue reading article…