> The function same-height works not correct, see the Demo:
> http://olaf-bosch.de/bugs/jquery/nifty/

If you are just using Nifty (9KB!) for same-height, this is a lot less code:

http://michael.futreal.com/jquery/vjustify/

jQuery.fn.vjustify=function() {
    var maxHeight=0;
    this.each(function(){
        if (this.offsetHeight>maxHeight) {maxHeight=this.offsetHeight;}
    });
    this.each(function(){
        $(this).height(maxHeight + "px");
        if (this.offsetHeight>maxHeight) {
            $(this).height((maxHeight-(this.offsetHeight-maxHeight))+"px");
        }
    });
};


The jQuery corner plugin has more options for corner decorations:

http://jquery.com/dev/svn/trunk/plugins/corner/


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to