I have a webpage where there is a textarea within a iframe. I need to read the value of this textarea from its child page JavaScript. Presently by using window.parent.
window.parent.
Using jQuery you can use contents(). For example:
contents()
var inside = $('#one').contents();