up vote 1 down vote favorite
share [g+] share [fb]

Using prototype js library I can access elements by using $(elementID). I can access the element in an Iframe by

$('iframeID').contentWindow.document.getElementById('ID of element inside Iframe').

I would like to use the same dollar method for my Iframe to access elements in Iframe. Is there any way?

link|improve this question

feedback

2 Answers

You could alias calling that iframe with something like:

var $IFRAME = function (id){
    return $('iframeID').contentWindow.document.getElementById(id);
}

Then, say you wanted to get the innerHTML of an element in that frame with id 'p1' you could do:

var x = $IFRAME('p1').innerHTML;
alert(x);

Or to manipulate it, for example hide it, you'd do:

$IFRAME('p1').hide();

The $IFRAME name for the function is arbitrary on my part, you could call it getElementInsideIFrameID or whatever appeals to you.

link|improve this answer
For example,$IFRAME('p1').hide(); does not work whereas, Element.hide($IFRAME('p1')) will work. What I would like to have that is extending the element inside IFrame to have the same functionality which prototype js does. – Hoque Jan 25 '10 at 3:06
Adding prototype.js to the "src" of Iframe makes it functional i.e.$IFRAME('p1').hide() works. I have tested it IE and FF. However, if the src IFrame doesnot have prototype.js, it does not work. How this can be achieve without adding prototype.js? – Hoque Jan 25 '10 at 5:16
In my testing with the latest version of Prototype, locally, calling $IFRAME('p1').hide(); worked for me from inside the iframe containing page. Perhaps set up a test page online and we can get a closer look at what might be happening. – artlung Jan 25 '10 at 14:26
I have added a test at amar-desh.net/stackoverflow/DollarIframe.aspx Please check it. – Hoque Jan 27 '10 at 22:42
show 8 more comments
feedback
up vote 0 down vote accepted

If you are eager to know the method, you can visit the link (after searching I got the link)

http://www.ruby-forum.com/topic/146705

and for the demo yo can visit here

http://nazmulweb.com/sandbox/stackoverflow/DollarIFrame3.aspx

Thanks.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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