I have an iframe called "menu" with lotsa links in it.. I want these links to open in an iframe called "content" instead of loading in the whole page.. How can I do this?
linking to iframes
Moderator: General Moderators
linking to iframes
Yeah... I know I'm a noob.. And this is for sure a very noobish question..
I have an iframe called "menu" with lotsa links in it.. I want these links to open in an iframe called "content" instead of loading in the whole page.. How can I do this?
I have an iframe called "menu" with lotsa links in it.. I want these links to open in an iframe called "content" instead of loading in the whole page.. How can I do this?
took me awhile to get that one as well. One IFRAME updating another IFRAME
try this code in your first frame that is going to update the second iframe.
phpScott
try this code in your first frame that is going to update the second iframe.
Code: Select all
<script language = "javaScript">
updatePage=parent.document.getElementById('updateFrame');
srce="updatePhotoInfo.php?picName="+picName;
updatePage.src=srce;
</script>