DED|Chain
Im yui Blog interviewt Eric Miraglia Dustin Diaz zu seiner DED|Chain Library.
DED|Chain is free open source software (BSD License) that will allow you to build first class, high-quality websites without the cruft. You get the reliability of Yahoo! UI, and the developer friendliess of jQuery.
Ein Beispiel: Dieser jQuery Code
$('#content a').click(function() {
$.post(this.href, function(resp) {
$('#result').append(resp);
});
return false;
});
würde in DED|Chain so aussehen:
_$('#content a').on('click', function(el) {
_$('#result').populate(el.href);
}, true);
}); 
