EDIT

Well unless i write some code to render the html source files from the iframe in the same way a browser works- from a cached copy of the iframe display.. then there is no way- its a complete lock down. flash and silverlight use crossdomain.xlm but who the hell remembered about iframes? nobody..and that does not work either.. so easyXDM / or html sendmessage it will have to be. damn

http://easyxdm.net/wp/


Original post


Can anybody please help me with a script.. or a way to get the value of

height : 1196px;
width: 284px;

from the computed style sheet. (webkit) i know IE is different- as usuall

I cannot access the iframe (cross domain)- i just need the height-width

Please help Screenshot of what i need (circled in red) how to access those properties? enter image description here

Source

<iframe id="frameId" src="anotherdomain\brsstart.htm">
 <html id="brshtml" xmlns="http://www.w3.org/1999/xhtml">   
    \--I WANT THIS ELEMENTS COMPUTED BROWSER CSS HEIGHT/WIDTH

<head>
<title>Untitled Page</title>
</head>

<body>
 BLA BLA BLA STUFF

</body>

</html>
   \--- $('#frameId').context.lastChild.currentStyle 
        *This gets the actual original style set on the other domain which is "auto"
        *Now how to getComputed Style?


</iframe>

The closest i got is this

$('#frameId').context.lastChild.currentStyle

That gives me the actual style on the HTML element which is "auto" and that is true as thats what's its set on the iframed document.

How.. do i get the computed style that all the browsers use to calculate the scroll bars, and inspect elements values?

Using Tomalaks answer i conjured up this lovely piece of script for webkit

window.getComputedStyle(document.getElementById("frameId"), null).getPropertyValue("height")

or

window.getComputedStyle(document.getElementById("frameId"), null).getPropertyCSSValue("height").cssText

Result 150px

Identical to

$('#frameId').height();

So i got them to add a id of 'brshtml' to the head- maybe it will help me select the element easier. webkit inspection shows me now html#brshtml but i cant select it using getelementbyid

link|improve this question

Look in the "related" section of this page... – Pekka May 6 '11 at 10:31
It sounds like you may want to use element.offsetWidth and element.offsetHeight properties but it actually is hard to tell what you really want from your post. – Jakub May 6 '11 at 10:31
Can you use jQuery? – Pekka May 6 '11 at 10:32
yes- i can use any scripting i want. For life i cacnnot get to those values.. i want to set the iframe height based on the computed style.. if i use jquery to get the iframes.docuemnt.height -- Bleee- access denied- for gods sake- so how does the browsers knwo its 1196px??! and its there! so how do i get it :D pretty please – ppumkin May 6 '11 at 10:36
i have read (several * several) articles from SO -- i cannot get a working answer – ppumkin May 6 '11 at 10:39
show 5 more comments
feedback

1 Answer

up vote 4 down vote accepted

See this answer.

It's not jQuery but, in Firefox, Opera and Safari you can use window.getComputedStyle(element) to get the computed styles for an element and in IE you can use element.currentStyle. The returned objects are different in each case, and I'm not sure how well either work with elements and styles created using Javascript, but perhaps they'll be useful.

The iframe looks about 150px high to me. If its contents are 1196px high (and indeed, you appear to be exploring the html node, according to the screenshot) and that's what you want to get, then you should navigate into the DOM of the iframe's document and apply the above technique to that.

link|improve this answer
Thank you! I tested it chrome debug like this and this is the relult window.getComputedStyle(document.getElementById("frameId"), null).getPropertyValue("height"): 150px It should be 1196px Its driving me mental – ppumkin May 6 '11 at 12:39
In your screenshot, the iframe does look to be about 150px high. The red circled bit is indicating that your html element is 1196px. Did you mean to venture into the iframe's DOM? – Lightness Races in Orbit May 6 '11 at 12:48
In IE you can use the element.currentStyle property. – geekchic May 6 '11 at 12:51
3  
@geekchic: Yes, that's what my answer says. – Lightness Races in Orbit May 6 '11 at 12:51
Yes the iframe is exactly 150px but i am looking for the highlighted Iframes DOM HTML element which is 1196x284 - that is what I have been trying to get – ppumkin May 6 '11 at 12:53
show 13 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.