javascript - How do you scroll an iframe from within using jquery? - Stack Overflow

I'm using a shadowbox which generates an iframe to display product details on a page. Because the

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!

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!

Share Improve this question asked May 18, 2010 at 15:34 Chris StahlChris Stahl 1,8123 gold badges15 silver badges17 bronze badges 0
Add a ment  | 

4 Answers 4

Reset to default 3

Like this: (Tested)

$("iframe").contents().children().animate({ scrollTop: x }, t);

Create a function in the parent javascript like this:

function scrollToPoint(top) {
    $("html, body").animate({ scrollTop: top }, "slow")
}

and call that function within the iframe like this:

window.parent.scrollToPoint(top);

It should work in chrome, not tested in firefox yet

This ended up working:

$('html,body').animate({ scrollTop: x }, t);

In Chrome I had to specifically select the body element:

$('#my-iframe').contents().find('body').animate({scrollTop:90},500);

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743778626a4505693.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信