Thanks for having a look.

I messed around with the padding and margins, etc,
and that seems to have smoothed out the sliding.

Thanks for pointing out the error, too.  I'll check it out.

Rick

> -----Original Message-----
> From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
> MorningZ
> Sent: Thursday, March 27, 2008 10:49 PM
> To: jQuery (English)
> Subject: [jQuery] Re: Anyone willing to take a look and see why this is 
> happening?
> 
> 
> What "others"... the page seems to work just fine (FF 2.0)
> 
> To note: firebug reports a 404 error for "http://c21ar.wsm-dev.com/cfm/
> images/loading.gif"
> 
> 
> 
> 
> 
> On Mar 27, 9:45 pm, "Rick Faircloth" <[EMAIL PROTECTED]> wrote:
> > Hi, all...
> >
> > Got some strange sliding going on.
> >
> > Here's the link:
> >
> > http://c21ar.wsm-dev.com/cfm/our-agents.cfm
> >
> > Click on the "Click here to view or hide agent's biography" link.
> >
> > The top bio slides and hides nicely.  The others are just spastic.
> >
> > The jQ controlling this is:
> >
> >         <script type="text/javascript">
> >
> >                 $(document).ready(function() {
> >
> >                         
> > $('div.bio-slide').find('div.biography').hide().end();
> >
> >                         $('a.showbio').each(function(i) {
> >                                 var $match = $('div.biography').eq(i);
> >
> >                                 $(this).toggle(function() {
> >                                         $match.slideDown('slow');
> >                                         }, function () {
> >                                         $match.slideUp('slow');
> >                                         }
> >                                 );
> >                         });
> >                 });
> >
> >         </script>
> >
> > Ideas?
> >
> > Thanks,
> >
> > Rick


Reply via email to