first of all, get used to my questions because they have only just begun
Ok, i am using a lot of frames these days and what i want to have happen is for someone to move their mouse over a link in one frame and have the page come up in a different frame, and then on the mouse out go back to null.html which is just has a background but no text.
here’s what i did:
a href=“bioanswer.html#name” onMouseOver=“parent.location=‘dude.html’”; onMouseOut=“parent.location=‘null.html’”; target=“answer”
the problem is the “parent.location” but i don’t know what to put instead of “parent.location” so that i could open “bioanswer.html#name” in the “answer” frame shown above.
thanks in advanced for the help
you need to include your target somewhere in your mouseover… right now you’re not telling it to go anywhere… all you have is it telling what document needs to be opened but it doesn’t know where it needs to open it.