M
Michael Hansen
how do avoid this:
function iframe01Location(newLocation)
{
(iframe01.location=newLocation);
}
function iframe02Location(newLocation)
{
(iframe02.location=newLocation);
}
i want to do something like this (this don´t work):
function iframeLocation(iframeName, newLocation)
{
(iframeName.location=newLocation);
}
Michael.
function iframe01Location(newLocation)
{
(iframe01.location=newLocation);
}
function iframe02Location(newLocation)
{
(iframe02.location=newLocation);
}
i want to do something like this (this don´t work):
function iframeLocation(iframeName, newLocation)
{
(iframeName.location=newLocation);
}
Michael.