6
I was wondering if it is possible to insert a target here:
window.location='www.google.com';
I don’t want to open on a new page, otherwise I would use window.open
. I want to use a target="topFrame"
to control a player.
I’m using an old thing (Frameset). I’m using this in the link <a href="system/radio/on.php" target="topFrame">
.
If you’re wearing a
Frame
, have tried using the attributesrc
of the same? You can also manipulate theFrame
using the API: https://developer.mozilla.org/en-US/docs/Web/API/Window.frames.– Wakim
You can change the
location
ofFrame
(if it is of the same domain) using the DOM object ofFrame
. If you don’t have to use the attributesrc
his.– Wakim
Thank you, for what you said here I searched on top of some tips of yours and found http://javascript.about.com/library/bltarget.htm
– Josimara
@Wakim Don’t want to post an answer explaining this better? For me is the correct answer.
– bfavaretto