Try this. put a hyperlink anywhere in the container
like this <a href="#" class="testlink">test</test> use the following JQuery $(".testlink").click(function(e) { e.prevenntDefault(); }); if the page contianer slides in any direction a bit when you click this there is probably a bug in the slider code on hyperlink click. if the bug does not show after that try this <a href="#testlink" class="testlink">test</test> use the following JQuery $(".testlink").click(function(e) { e.prevenntDefault(); }); there is a possibility that it is reading anything with a hreff attribute longer than 1 chaacter. On Thu, Jun 18, 2009 at 1:57 AM, danomagazine <danomagaz...@gmail.com>wrote: > > On my site here (http://rightcross.net/coda/mosaic.html), I am using > the coda slider effect I found here (http://jqueryfordesigners.com/ > coda-slider-effect/ <http://jqueryfordesigners.com/%0Acoda-slider-effect/>). > And on the tab entitled "Home Groups", there is > a link "Home Group 1", which links to a fancy zoom box that I got from > here (http://orderedlist.com/demos/fancy-zoom-jquery/). > > But when I click on the fancy zoom text it scrolls the container a > little to the right, and on some older browsers it returns to the > original first container that loaded from the start. > > Any idea where the effects are conflicting? or what code I would have > to amend to make it work more fluidly? > > Any help would be appreciated as I'm new to jQuery, and discovering > how wonderful it is, but still don't quite grasp it all. >