On Oct 16, 2007, at 4:37 PM, David Serduke wrote:
Sorry but I took some liberties with your code. Hopefully that is ok.
Hey David, No apology necessary. Of course it's ok! :-)
http://www.exfer.net/test/jquery/tabslide/ I'd be interested to know if that is more like what you wanted.
It looks really good! I'm not sure now which I prefer, but I really appreciate your spending the time on it and working through the queue and stop stuff (and also dealing with the headache of Google Groups damming the flow of posts). Anyway, I was working on it for someone else, so ultimately it's up to him. I think yours is closer to the Mootools one, but still isn't exactly the same, because the Moo tabs don't slide at all if one is currently animated, whereas yours will slide up just a bit and then slide back down. Not a big deal, and it's closer than I got.
I think I'm going to write up a quick entry about what I came up with. Mind if I link to yours as an alternative?
On Oct 16, 2007, at 2:50 PM, David Serduke wrote:
I'll look at it again then. I was trying to duplicate the functionality of the mootools menu and it has that same "design flaw". You don't actually have to move out and back in again but rather just move within the tab since it is mousemove and not mouseover.
Yeah, I was interested to see in the Mootools example that he used both mouseover and mousemove. Not sure that was the best way to deal with the situation.
$(panels[i].getElementsByTagName('h3')[0]).addEvent('mouseover', accordion); $(panels[i].getElementsByTagName('h3')[0]).addEvent('mousemove', accordion);
--Karl