vote up 1 vote down star

I'm using the scrollTo plugin for jQuery on a website. I made a vertical scrolling div wher I can scroll to different div by clicking on buttons. And now I need to make a back button to return to the previous div.

what I want is the opposite of

this.next()

I tried

this.prev()

but it doesn't work.

$('#tabs').click
(
    function()
    {
        $('#wrapper').scrollTo(this.prev(), 'medium')
    }
);
flag
Are you getting an error message – bendewey May 7 at 20:36
nope, no message! – Philippe Mongeau May 7 at 20:42

2 Answers

vote up 1 vote down check

Try:

$('#tabs').click
(
    function()
    {
        $('#wrapper').scrollTo($(this).prev(), 'medium')
    }
);

In events this represents the DOM element, not the jQuery object.

link|flag
yes, that's what I did after reading Shog9's answer and it works. but thanks anyway, and your answer is clearer than his. – Philippe Mongeau May 7 at 21:14
vote up 1 vote down

this is a raw element reference - you'll need to wrap it in a jQuery object before you can use jQuery methods like prev(): $(this).prev()

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.