Linking an iframe

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • adweaver
    New Member
    • Oct 2009
    • 20

    Linking an iframe

    I'm having trouble getting an iframe, that i use to display the details of an offer, to be clickable and redirect to another url.

    Code:
    <tr>
        
        <td  height="750"  align="center"  bgcolor="transparent"><link href"http://www.google.com"><iframe src="HowTheTrialWorks.html" width="700" height="750" scrolling="no" frameborder="0"></iframe></td>
        
        </tr>
    Anyone know how I can accomplish this?

    Thanks,

    Andrew
  • YarrOfDoom
    Recognized Expert Top Contributor
    • Aug 2007
    • 1243

    #2
    The <link>-tag is used to define the relationship between you page and an external resource. For hyperlinks, use the <a>-tag.

    Comment

    Working...