> If you were wondering what irked me a bit, it was primarily show/hide.
> $('#foo').hide(); does have the connotation of hiding something.
> However it always annoyed me how 'hide' was actually a very specific
> "scale diagonally to the upper left, and disappear". Rather than a
> simple 'hide me' like it implies.
> And for just sliding something closed, $('#foo').slideUp(); is used,
> even though 'slideUp' is basically a type of 'hide' with a different
> animation. While over on the other hand to actually 'hide' something
> without animation (I have had to do this many a time) I have to
> verbosely type in $('#foo').css('display', 'none');I can't really speak to the rest of your proposals - since they're mostly just name changes - but this is definitely not true. Calling .hide() with no arguments does no animation (same with show and toggle). --John --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "jQuery Development" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/jquery-dev?hl=en -~----------~----~----~----~------~----~------~--~---
