linking parent page link to anchor in an iframe

sporhaberlerixx

New Member
I've been searching and searching, but I'm absolutely stumped on this: I have an index.html page that has a few iframes in in- 100% width and height stacked atop one another. The index has fixed navigation with a z-index OVER the frames. My index has scrolling basically disabled with javascript. So I'm trying to have the navigation (which is on the index page) link to specific anchors inside one of the iframes, which will load in that iframe. I've obviously gathered this is easier said then done. Why \[code\]<a href="http://stackoverflow.com/questions/14086767/iframe-src.html#anchor" target="iframe">\[/code\] doesn't work eludes me, but apparently it doesn't.What's the work-around for this? Here's how my index is basically set up:\[code\] <html> <head> ** some CSS and Javascript here that I know's irrelevant. ** <script type="text/javascript"> document.documentElement.style.overflow = 'hidden'; // firefox, chrome document.body.scroll = "no"; // ie only document.documentElement.style.overflowX = 'hidden'; // horizontal scrollbar will be hidden document.documentElement.style.overflowY = 'hidden'; // vertical scrollbar will be hidden </script></head><body><iframe src="http://stackoverflow.com/questions/14086767/landing.html" name="landing" style="position: relative; width: 100%; height: 100%; border: 0;"></iframe> <iframe src="http://stackoverflow.com/questions/14086767/work1.html" name="work-iframe" style="position: relative; width: 100%; height: 100%; z-index: 1;"></iframe><iframe src="http://stackoverflow.com/questions/14086767/info.html" name="info" style="position: relative; width: 100%; height: 100%; z-index: 4;"></iframe><nav> <a href="http://stackoverflow.com/questions/14086767/work.html#parker" target="work-iframe">PARKER BROTHERS CLASSICS</a> <a href="http://stackoverflow.com/questions/14086767/work.html#bohs" target="work-iframe">BOHS & HONS</a> <a href="http://stackoverflow.com/questions/14086767/work.html#companion" target="work-iframe">THE COMPANION SERIES</a> <a href="http://stackoverflow.com/questions/14086767/work.html#balmer" target="work-iframe">BALMER</a> <a href="http://stackoverflow.com/questions/14086767/work.html#hoeweler" target="work-iframe">MICHAEL HOEWELER</a> <a href="http://stackoverflow.com/questions/14086767/work.html#ampugreen" target="work-iframe">AMPUGREEN</a> <a href="http://stackoverflow.com/questions/14086767/work.html#occasional" target="work-iframe">OCCASIONAL SYMPHONY</a> <a href="http://stackoverflow.com/questions/14086767/work.html#type" target="work-iframe">TYPE & LOGOS</a> <a href="http://stackoverflow.com/questions/14086767/work.html#nextwave" target="work-iframe">NEXT WAVE FESTIVAL</a> <a href="http://stackoverflow.com/questions/14086767/work.html#illustration" target="work-iframe">ILLUSTRATIONS</a> <a href="http://stackoverflow.com/questions/14086767/work.html#stationnorth" target="work-iframe">STATION NORTH</a></nav>\[/code\]thoughts?
 
Back
Top