View Single Post
  #4 (permalink)  
Old 08-14-2008, 08:48 PM
curtiss's Avatar
curtiss curtiss is offline
Moderator
 
Join Date: May 2003
Posts: 1,468
You've got an extra double-quote mark and a semi-colon where they don't belong in your code. I think that's the only thing stopping it from working.

Following is some tested, working code to show you an example:
Code:
<table width="200" border="1">
  <tr onclick="myframe.location.href='http://www.google.com/'">
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
</table>

<iframe name="myframe" src="http://www.yahoo.com/"></iframe>
__________________
I hate Internet Explorer! Anyone with me?
Reply With Quote