[jQuery] Re: scrollTo firefox ugliness

2009-03-20 Thread Dan Pouliot
THANK YOU THANK YOU THANK YOU!!! Worked like a charm! On Mar 19, 8:47 pm, mkmanning michaell...@gmail.com wrote: Try changing overflow:auto to overflow:hidden in scroll.css*: .section{         width:3900px;         position:relative;         overflow:auto; } *n.b.: I only did this in

[jQuery] Re: scrollTo firefox ugliness

2009-03-19 Thread mkmanning
Try changing overflow:auto to overflow:hidden in scroll.css*: .section{ width:3900px; position:relative; overflow:auto; } *n.b.: I only did this in Firebug, so not promising anything :) On Mar 19, 4:36 pm, Dan Pouliot danpoul...@gmail.com wrote: First let me say a

[jQuery] Re: scrollTo Firefox

2008-02-05 Thread Ariel Flesler
I think the problem is that you are not preventing the # from appearing in the url, that generates some sort of default scroll, I'd bind those onclicks in a non-obstrusive way, try this: script type=text/javascript jQuery(function( $ ) $.scrollTo.defaults.axis = 'x';//so we don't need to

[jQuery] Re: scrollTo Firefox

2008-02-05 Thread Ariel Flesler
stirman let me know I had a missing { in the code. Right after the first function. This is the corrected version in case someone uses it as a base for something else. jQuery(function( $ ){ var positions = [ '-=900', '+=900', 4000 ];//scroll positions var $links = $('div.move_link

[jQuery] Re: scrollTo Firefox

2008-02-05 Thread stirman
Many thanks Ariel!!! On Feb 5, 12:55 pm, Ariel Flesler [EMAIL PROTECTED] wrote: stirman let me know I had a missing { in the code. Right after the first function. This is the corrected version in case someone uses it as a base for something else.  jQuery(function( $ ){       var positions

[jQuery] Re: scrollTo Firefox

2008-02-05 Thread Ariel Flesler
I'll create a new plugin, similar to localScroll, that will do just that. Scroll between items, with prev/next like buttons, I suppose I'll have it soon (today or tomorrow) Cheers Ariel Flesler On 5 feb, 16:58, stirman [EMAIL PROTECTED] wrote: Many thanks Ariel!!! On Feb 5, 12:55 pm, Ariel