I'm using a shadowbox which generates an iframe to display product details on a page. Because the details page can be pretty long, the client would like a "More" button that scrolls the page down (apparently the scrollbar on the right of the iframe isn't enough).

Here's the code that I've tried in order to get the iframe to scroll:

$(document).ready(function()
{
$(".moreButton img").click(function() {
    scrollbottom();
});
});

function scrollbottom() {
var x = 250; // this number is a temporary placeholder
var t = 500;
$("iframe").animate({ scrollTop: x }, t);
}

I've also tried using body instead of iframe but to no avail. Any ideas? Thanks!

link|improve this question

feedback

2 Answers

Like this: (Tested)

$("iframe").contents().children().animate({ scrollTop: x }, t);
link|improve this answer
$('iframe').contents().animate({ scrollTop: x }, t); That doesn't seem to be working either. – Chris Stahl May 18 '10 at 15:46
It works for me. (In Firefox, at least) – SLaks May 18 '10 at 16:12
feedback
up vote 0 down vote accepted

This ended up working:

$('html,body').animate({ scrollTop: x }, t);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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