You have a hash (#) in the href attribute. This is the expected behavior. You'll need to return false from your click handler.
On Thu, Jan 29, 2009 at 6:21 PM, EricC <dt.e...@gmail.com> wrote: > > Hi, > > I have a page that opens some divs based on user feedback (try the > more photos links please). If you happen to be scrolled down the page > and you toggle something open the browser pops to the top, thus > closing the new div. > > Example: > http://rtrservices.com/equipment.php?page=test > > Code: > $('.morePhotos').click (function() { > $(this).parents().find('.pPictureStrip').toggle(); > }); > > I need it not to move the page, any help would be appreciated. > > Cheers, > > Eric