If you do not use at least a bootstrap HTML with javascript, as in my second example, non-javascript enabled browsers or those with javascript enabled but with high security settings, will not see your content. Also, I think that you may have misunderstood, my second example, although written in an HTML code block and using bootstrap HTML code, is javascript. If your object is to hide your content from browsers configured as I just mentioned, the second code can be modified to do so:
Code:
<a href="javascript:void()" onclick="parent.iFrameName.location.replace('filename.ext');return false;"><img src="thumbnail.ext"></a>
If your object is not to replace the contents of the other iframe but rather, an image element within it:
Code:
<a href="imageFilename.ext" target="iFrameName" onclick="parent.iFrameName.getElementById('id_of_image_element').src='imageFilename.ext';return false;"><img src="thumbnail.ext"></a>
It is hard to be more specific, not knowing what exactly you want to do and not knowing what you would like the consequences to be for non-javascript enabled browsers.
Bookmarks