How to scroll iframe to a specific element

HI,
I have iframe(in my domain), and I'm looking for a plugin or in some other way that I can make the iframe window scroll somewhere near it (to a specific div) by clicking on the button from the iframe side .
any ideas? anyone for help?

+3
source share
1 answer

iframeYou can scroll like any other scrollable item. But you need to know that this is a subdocument (so the offsets refer to the top / left corner of iframe +, if you need the div position in the iframe, you should use $("#iFrame").contents().find("#someDiv"))

+2
source

All Articles