[jQuery] Re: Tab Effect

2008-01-30 Thread studiobl
Thanks, ocyrus! That helped! ...it does take dismayingly long for posts to show up here. On Jan 29, 1:49 pm, ocyrus [EMAIL PROTECTED] wrote: I recently solved this solution this way, $(document).ready(function(){ $('#profile-nav').children().each(function(){

[jQuery] Re: Tab Effect

2008-01-30 Thread Kyle Browning
Hey no problem, and yea. I think they are moderated On Jan 30, 2008 7:23 AM, studiobl [EMAIL PROTECTED] wrote: Thanks, ocyrus! That helped! ...it does take dismayingly long for posts to show up here. On Jan 29, 1:49 pm, ocyrus [EMAIL PROTECTED] wrote: I recently solved this solution

[jQuery] Re: Tab Effect

2008-01-29 Thread ocyrus
I recently solved this solution this way, $(document).ready(function(){ $('#profile-nav').children().each(function(){ $(this).click(function(){ toggleTabs($(this)); return false; }); }); }); function toggleTabs(tab) { tab.siblings().children().removeClass('on');

[jQuery] Re: Tab Effect

2008-01-29 Thread ocyrus
ul id=profile-nav class=clearfix li class=tab-biographya href=# class=onBiography/a/li li class=tab-backgrounda href=#Background/a/li li class=tab-contacta href=#Contact/a/li /ul $(document).ready(function(){ $('#profile-nav').children().each(function(){