Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

using iframes in Safari

0 views
Skip to first unread message

luckyde...@yahoo.com

unread,
Mar 16, 2007, 7:52:21 PM3/16/07
to
I am trying to access image information that is displayed using
iframe.
iframe code looks like this:
<iframe id="testImage" src="/images/someimg.gif" scrolling="yes"
frameborder="0" style="border: 0; width: 280px; height: 455px;"></
iframe>

I need to figure out height of the image.

In Firefox and IE it is not a problem.

document.getElementById('testImage').contentWindow.document.getElementsByTagName('img')
[0].height
document.getElementById('testImage').contentWindow.contentDocument.height

But in Safari contentWindow is undefined.

RobG

unread,
Mar 17, 2007, 12:08:09 AM3/17/07
to
On Mar 17, 9:52 am, luckydenis2...@yahoo.com wrote:
> I am trying to access image information that is displayed using
> iframe.
> iframe code looks like this:
> <iframe id="testImage" src="/images/someimg.gif" scrolling="yes"
> frameborder="0" style="border: 0; width: 280px; height: 455px;"></
> iframe>
>
> I need to figure out height of the image.
>
> In Firefox and IE it is not a problem.
>
> document.getElementById('testImage').contentWindow.document.getElementsByTa gName('img')

> [0].height
> document.getElementById('testImage').contentWindow.contentDocument.height
>
> But in Safari contentWindow is undefined.

contentWindow is an MS proprietary property of frame and iframe
elements, it may not be supported by browsers other than IE so make
sure you test for it before attempting to use it.


--
Rob

luckyde...@yahoo.com

unread,
Mar 17, 2007, 1:19:58 AM3/17/07
to
I was able to use it in Firefox. But my problem is Safari.

-Lost

unread,
Mar 17, 2007, 4:40:41 AM3/17/07
to
"RobG" <rg...@iinet.net.au> wrote in message
news:1174104489....@n76g2000hsh.googlegroups.com...

Sure would be nice if the older pages at Mozilla could get a little update. I remember it
losing out in Mozilla, but cannot find where I read it.

The original poster can use document.defaultView instead of contentWindow.

-Lost


-Lost

unread,
Mar 17, 2007, 4:50:39 AM3/17/07
to
"-Lost" <misse...@comcast.net> wrote in message
news:9YOdnQA8zdAbNGbY...@comcast.com...

Oops, scratch that. I know diddly about Safari, so no clue if what I suggested is an
alternative or not.

-Lost


ASM

unread,
Mar 17, 2007, 8:20:46 AM3/17/07
to
luckyde...@yahoo.com a écrit :

> I was able to use it in Firefox. But my problem is Safari.

with Safari the document of iframe is empty ... !
(for sure ! ! ! :-( )

Little test (in old JS) :

<html>
<iframe id="testImage" name="testImage" src="test.gif" scrolling="yes"
frameborder="0" style="border: 0; width: 580px; height: 455px;">
</iframe>

<form onsubmit="return false;">
<p>Works with : FF 2, Opera 9, iCab 3.0.3 :
<button onclick="
if(parent.testImage.document.images)
alert(parent.testImage.document.images.length>0);
">is there an image ? </button>
</p>
<p>Works with : FF 2, Opera 9, iCab 3.0.3 :
<button onclick="
if(parent.testImage.document.images)
alert(parent.testImage.document.images[0].height);">height </button>
</p>
<p>Works with : FF 2 *AND* Safari 1.3<br>
but *NOT* with Opera 9 and iCab 3.0.3, :
<button onclick="
var I = new Image();
I.src = parent.testImage.location;
alert(I.height);
">height </button>
</p>
</form>
</html>

--
Stephane Moriaux et son (moins) vieux Mac déjà dépassé
Stephane Moriaux and his (less) old Mac already out of date

0 new messages