tags:

views:

26

answers:

1

I would like to target a specific part of a page to show in an iFrame. I know that this is possible as I found a solution for some while ago, but I lost the link and cant seem to find it on google anymore.

If there is a kind soul out there that could help me out, I would appreciate it.

+1  A: 

If the part of the page contains a link with a name you can do

<iframe src="page.html#link_name"></iframe>

If the page doesn't have links like these you can scroll the iframe

BrunoLM