Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using a short snippet of linkify derived code to access all the text inodes within a webpage from a Firefox extension. This looks like this, so nothing particularly interesting:

var notInTags=[
    'a', 'head', 'noscript', 'option', 'script', 'style', 'title', 'textarea'
    ];

    var xpath = ".//text()[not(ancestor::"+notInTags.join(') and not(ancestor::')+")]";

    var candidates = window.content.document.evaluate(xpath, window.content.document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);

Does anyone have a suggestion on the best way to grab the text nodes from any iframes present as well please? Specifically, is using

iframe.window.content.document

likely to get me anywhere (Doesn't seem to), or am I am I barking up the wrong tree?

Cheers :)

Edit 2: This is the complete updated function (again)

    rsfindmod.searchiframes= function(candidates){
//This fixes cases where a redirecting page uses frames (Primarily search engines etc)
    const urlRegex = /\b(https?:\/\/[^\s+\"\<\>]+)/ig;
    var framesets = window.content.document.getElementsByTagName('frame','iframe','frameset');

    for (var i = 0; i < framesets.length; i++) {
    if (urlRegex.test(framesets[i])) {
    alert('test');
    var document2 = framesets[i].contentDocument;
    var notInTags=[
    'a', 'head', 'noscript', 'option', 'script', 'style', 'title', 'textarea'
    ];

    var xpath = ".//text()[not(ancestor::"+notInTags.join(') and not(ancestor::')+")]";

    var textnodes = document2.evaluate(xpath, document2, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
    for(var i = 0; i < textnodes.length; i++) {
        candidates.push(textnodes[i]);
    }
}   
}
}

Edit 3: A slightly better function?

rsfindmod.searchiframes= function(candidates, frame, documentList){
//This fixes cases where a redirecting page uses frames (Primarily search engines etc)
    const framesets = frame.frames;

    for (var i = 0; i < framesets.length; i++) {
    var document2 = framesets[i].contentWindow.document;
    var notInTags=[
    'a', 'head', 'noscript', 'option', 'script', 'style', 'title', 'textarea'
    ];
    alert('test');
    var xpath = ".//text()[not(ancestor::"+notInTags.join(') and not(ancestor::')+")]";

    var textnodes = document2.evaluate(xpath, document2, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
    for(var i = 0; i < textnodes.length; i++) {
        candidates.push(textnodes[i]);
        alert('test1'); 
    }

}
}
share|improve this question

1 Answer

up vote 1 down vote accepted

You want iframe.contentDocument (or iframe.contentWindow.document, but the former is simpler).

share|improve this answer
Doesn't like that at all. Please see the first post for the complete function. – leezer3 Apr 24 '11 at 15:38
Doesn't even get as far as the test alert. In theory, this ought to be finding all the iframes/ framesets on the page, adding them to the array 'framesets', and then pushing all the text nodes to the candidates array. – leezer3 Apr 24 '11 at 15:42
Updated what I've got again to add a URL test before I try accessing the contentDocument. This still doesn't work, but neither does it make Firefox throw a complete wobbly! – leezer3 Apr 24 '11 at 16:00
Are your subframes from a different origin (e.g an ad server)? If they are, then you can't get at their contents, of course. – Boris Zbarsky Apr 24 '11 at 17:06
Ah, that would be why then :( I'm trying to fix a page redirected through a file search engine. The original page is displayed in an iframe witihin a page on the search engine's server. Any easy way around that? I'm thinking I could possibly do something with a grabber, and then process this as an ordinary document somehow? – leezer3 Apr 24 '11 at 18:04
show 6 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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