Target in frames not working

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

    Target in frames not working


    I have a frameset that was working fine then suddenly a link that is
    suppose to load a page in an adjeacent frame opens a new window
    instead. What could be causing this? Problem prevalent in IE 6.0.

    The frameset:


    <html>
    <head>

    <title>My page</title>

    </head>

    <!-- frames -->

    <frameset cols="170,*" border=0>

    <frameset rows="*, 1" border=0>

    <frame name="menu" src="menu.jsp" marginwidth="5"
    marginheight="1 0" scrolling="yes" frameborder="0" resize=yes>

    <frame name="onepix" src="onepix.jsp " marginwidth="0"
    marginheight="0 " scrolling="auto " frameborder="0" >

    </frameset>

    <frame name="adminbody " src="admin.jsp" marginwidth="10 "
    marginheight="0 " scrolling="auto " frameborder="0" >

    </frameset>

    </html>


    My link that opens a new window instead of loading in the frame
    "adminbody" :

    <a href="foo.jsp" target="adminbo dy">Go there</a>
Working...