Color animation jQuery-plugin

With jQuery’s animate function, you can animate all kinds of css-properties. What’s really missing from jQuery is animating colors. This plugin will add this feature. With this plugin, you can animate the following properties: color backgroundColor borderColor borderBottomColor borderLeftColor borderRightColor borderTopColor outlineColor This plugin is based on Color Animations by Read more…

EqualHeight

var currentTallest = 0, currentRowStart = 0, rowDivs = new Array(), $el, topPosition = 0; jQuery(container).each(function() { var el = jQuery(this); jQuery(el).height(‘auto’) topPostion = el.position().top; if (currentRowStart != topPostion) { for (currentDiv = 0 ; currentDiv < rowDivs.length ; currentDiv++) { rowDivs[currentDiv].height(currentTallest); } rowDivs.length = 0; // empty the array Read more…