[jQuery] Scrolling in Opera?

[jQuery] Scrolling in Opera?


Has anyone else had the problem of Opera not scrolling when using the
ScrollTo in interface?
(By the way, Stefan and Paul, thanks for your work on interface - I use it a
lot)
My page has a lot of #xxx and anchors and I wanted to use the
ScrollToAnchors method in interface. Since the method looks for elements to
scroll to (not named anchors), I made this (small) change to the method:
ScrollToAnchors : function(speed, axis, easing) {
            return this.each(
                function()
                {
                    jQuery(this).click(
                        function(e)
                        {
                            parts = this.href.split('#');
                            jQuery('a[@name='+parts[1]+']').ScrollTo(800);
                            return false;
                        }
                    );
                }
            )
        }
and used this in the document ready:
$('a[@href*="#"]').ScrollToAnchors(800);
Works great in FF, IE but not in Opera. I tried a straight ScrollTo function
in Opera, which also failed.
Can anyone confirm?
--
View this message in context: http://www.nabble.com/Scrolling-in-Opera--tf3138253.html#a8697485
Sent from the jQuery Plugins mailing list archive at Nabble.com.
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/