I am currently working on a website which must download content from another website through the use of an iframe. Is there any way that I can crop the contents of the downl
Is there any way that I can crop the contents of the downloaded page to only show a section of that page on my website?
No. The Same Origin Policy prevents you from manipulating the iframe in any way, including the scroll position.
There would be a workaround by putting the iframe into an a div container that has a defined height and width, and overflow: hidden to clip the view port: