In article <c0tmna$303q$1@walter.acs.nmu.edu>,
nkilduff@nmu.edu
enlightened us with...[color=blue]
> So will someone tell me how to do it? Thanks!
>
>[/color]
Take A and put in slot B.
IOW, not everyone sees all posts. Quote what you're asking.
As to how to target a link to an opener...
A link on a page opens a new window. I assume this is done with
javascript similar to as follows:
<a href="someUrl.com"
onClick="window.open('someUrl.com','','');return false;">link</a>
Note: some popup blockers may kill this. Some allow it because it is the
direct result of a user action.
In that new window, you want links to target the opener.
You would do that as follows:
<a href="someUrl.com"
onClick="window.opener.location='someUrl.com';retu rn false;">link</a>
Note: If a user opened the link on the main window with a middle mouse
click, resulting in it being opened in a new tab (opera, mozilla,
netscape), this dies (I think). If the main page is a frameset, and you
want the whole frameset to change, add "top." after "opener." above.
Note 2: while putting the pages in the href means people with script
disabled can still use the site, the mere fact that the opened window is
a menu means that navigation is disabled for these people. This means
that the site is useless for some people, especially those with special
browsers like people who are visually impaired.
Make a page that works with no CSS and no javascript. Then enhance it
with CSS and javascript.
HTH
--
--
~kaeli~
A little rudeness and disrespect can elevate a meaningless
interaction to a battle of wills and add drama to an
otherwise dull day.
http://www.ipwebdesign.net/wildAtHeart http://www.ipwebdesign.net/kaelisSpace