I'm using the iframe tag to display a bunch of terms that show-up on multiple pages. This allows me to make changes to HowTheTrialWork s.html and update every page that displays them.
HowTheTrialWork s.html contains a couple images that I would like to attach links to, but they don't seem to work in the iframe.
Is there something else I could use in place of iframe so that the links I assign to the images within HowTheTrialWork s.html will work when this page gets called?
Andrew
Code:
<td height="750" align="center" bgcolor="transparent"><iframe src="HowTheTrialWorks.html" width="700" height="750" scrolling="no" frameborder="0"></iframe></td>
</tr>
Code:
<td height="117px" width="700" bgcolor="#FFFFFF" align="center" ><img src="images/tape.gif" onclick="javascript:document.getElementById('bill_fname').focus();" style="cursor:pointer" /></td>
Andrew