You're going to have to provide a bit more information before someone can help... First, are you programming in ActionScript or JavaScript? Second, what do you mean by accessing - changing the content? inspecting the DOM? creating an iframe dynamically? – Branden HallJun 22 at 15:22
I am using Javascript. I want to access the DOM to basically just to get the title out of the HTML. Just sort of a read access.
$(document).ready(function(){
$("#childFrame").load(function() {
$("#childFrame").ready(function(){
air.trace($("#childFrame").contents().find("title").html());
});
});
});
I always get a null – ClintJun 24 at 17:43
Stack Overflow is a collaboratively edited question and answer site for programmers – regardless of platform or language. It's 100% free, no registration required.