Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So, here's the problem: I have a quite long page with an iframe in the middle. Now, if an anchor is clicked in the iframe, the entire page is scrolled to the iframe, which is what I want to avoid.

Here's an example: http://jsfiddle.net/ymbV7/1/ Don't scroll down the page, but scroll the iframe until you can see the "Contents" menu, and try any of the links (for example "Features").

I need the external page not to scroll, while the iframe has to correctly scroll to the clicked anchor.

Any ideas?

share|improve this question
Verified in Chromium 17 – Aaron Digulla Mar 5 '12 at 16:39
I have got the same problem. Chrome and FF tested. – Mattia Larentis Mar 5 '12 at 17:46

1 Answer

Try to put your content into a table like this:

<table cellpadding=0 cellspacing=0 height="100%" width="100%">
  <tr>
    <td> 
      Header
    </td>
  </tr>

  <tr>
    <td>
      <iframe src="http://en.wikipedia.org/wiki/jQuery" height=600 width="90%"></iframe>
    </td>
  </tr>
  <tr>
    <td> 
      Footer
    </td>
  </tr>
</table>

Refer to http://www.webdeveloper.com/forum/showthread.php?t=212032

share|improve this answer
1  
Tested on Chrome 17.0.963.56 On Firefox 10.0.1, the problem doesn't exist. – DungHuynh Mar 6 '12 at 16:56
Still happening, see here jsfiddle.net/ymbV7/8 and here jsfiddle.net/ymbV7/9 I'm on OSX and using Chrome 17.0.963.65 – StefanoP Mar 6 '12 at 19:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.