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

I have a document with 3 iframes. Together they make up a glossary.

<body>
   <iframe name="frame1" src="frame1.htm"></iframe>
   <iframe name="frame2" src="frame2.htm"></iframe>
   <iframe name="frame3" src="frame3.htm"></iframe>
</body>

Frame1 is the menu frame. It has the letters A - Z. Frame 2 contains the contents. Frame 3 is the footer. Frame1 has anchor tags such as the following for the letters.

<a href='javascript:parent.frame2.location.href="ssbn_glossary.htm#w"' onclick="doSomethingElseToo();">W</a>

I have also tried putting the frame1 inside the parent frame

 <a href='somepage.htm' onclick="doSomethingElseToo();" target="frame2">#</a>
 <a href='somepage.htm#a' onclick="doSomethingElseToo();" target="frame2">A</a>
 <a href='somepage.htm#b' onclick="doSomethingElseToo();" target="frame2">B</a>
 <a href='somepage.htm#c' onclick="doSomethingElseToo();" target="frame2">C</a>
 <a href='somepage.htm#d' onclick="doSomethingElseToo();" target="frame2">D</a>
 <iframe name="frame1" src="frame1.htm"></iframe>
 <iframe name="frame2" src="frame2.htm"></iframe>
 <iframe name="frame3" src="frame3.htm"></iframe>

It works in Chrome; however, on Android it just reloads the page and doesn't jump. I am testing on an Android tablet, Ice Cream Sandwich.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.