Adjust the Scroll Position of an IFrame
Does anyone have an example of how to automatically scroll the page inside an IFrame? I have an IFrame that has no scroll bars, but there's a bit of whitespace that I want to get rid of. Unfortunately, the page in question doesn't have an element in the right area with an ID that I can anchor to.
Here is code I was toying with:
- jQuery(document).ready(function () {
jQuery('iframe').contentWindow.scrollTo(20,20);
});