I can't seem to get an iframe to display a specific element. What am I doing wrong? From a StackOverflow example I'm using the following method:
Note: the iframe is embedded in a phpbb forum and references a page from within the same forum.
<div class="tab-content">
<form id="ucp" method="post" action="">
<div class="tab-pane">
<fieldset class="framed-ucp">
<legend>Manage notifications</legend>
<p>Here you may view all past notifications.</p>
<div class="row">
<div class="col-md-4">
<ul class="pagination pagination-sm pull-left">
<li><a href="./ucp.php?i=ucp_notifications&mode=notification_list&mark=all&token=cecbf308" class="mark" data-original-title="" title="">Mark all notifications read</a></li></ul>
</div>
</div>
</fieldset>
</div>
</form>
</div>
<iframe id="notify" src="example.com" seamless="seamless" width="1100" height="600">
</iframe>
document.getElementById('notify').contentWindow.document.getElementById('tab-pane')