PDA

View Full Version : Targetting a nameless frame


TrainReq
06-01-2007, 06:40 AM
Is there any way that you can do getURL with the target on a frame that does not have a name?

Like

getURL ("http://www.site.com/", "frame[1]");


Meaning load on the first frame (sort of like you can do with javascript)..

The reason being , is because I am putting this onto a site where the iframes have no names, and you cant place ur own iframes in.

that.. or is it possible to call upon a URL invisably without using a frame?

_Aerospace_Eng_
06-02-2007, 05:03 AM
getURL("javascript:window.frames[1].location = 'http://www.site.com/';void(0)");
Try that.