iframe src

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jeremy Shovan

    iframe src

    I have the following in my page:

    <table>
    <tr>
    <td colspan="2">
    <iframe
    name="frame1"
    src="insert1.ph p"
    frameborder="0"
    scrolling="no"
    height="100"
    width="500">
    </iframe>
    </td>
    </tr>
    </table>

    <img name="droid"
    onMouseOver="do cument.frame1.d ocument.locatio n.href ='insert1.php'"
    src="droid.gif"[color=blue]
    >[/color]

    It works in IE but not in mozilla!! Does anyone know how to make it
    work with IE, NS, and Mozilla??

    Jeremy

  • neerolyte

    #2
    Re: iframe src

    this works for me in mozilla and msie:


    <table>
    <tr>
    <td colspan="2">
    <iframe
    name="frame1"
    src="page1.html "
    frameborder="0"
    scrolling="no"
    height="100"
    width="500">
    </iframe>
    </td>
    </tr>
    </table>

    <img name="droid"
    onMouseOver="fr ame1.document.l ocation.href ='page2.html'"
    src="droid.gif"[color=blue]
    >[/color]


    Comment

    Working...