set scrollbar position in an iframe

1

I have a page with a #iframe, and when the page loads, I need the iframe scroll to slide horizontally to the right.

I tried several ways but so far nothing.

jQuery("#iframe").contents().find("html,body").animate({scrollLeft:100}, 1000);

Would anyone help me?

    
asked by anonymous 13.10.2016 / 22:08

1 answer

0

You almost did it.

Just try to add your code to $(window).load() and see what happens.

$(window).load(function(){
    jQuery("#iframe").contents().find("html,body").animate({scrollLeft:100}, 1000);
});

See a working example

Note that there may be some security locks in the iframe, thus preventing it from working.

For more information, see this question , which I think will help you a lot.

    
13.10.2016 / 22:28