Hey, I'm trying to get notified when the child window I'm opening has its document loaded and ready. This doesn't seem to work:

win = window.open(href, 'test', 'width=300, height=400');
win.focus();
$(win.document).ready(function() {
           // Ok, the function will reach here but if I try to manipulate the
           // DOM it doesn't work unless I use breakpoints
           $(this).contents().find("...").doStuff(); // nothing happens
    });

What do I have to do?

link|improve this question

58% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Have you tried this? —

$(win.document).ready(function() {
    $(win.document).contents().find("...").doStuff();
});

This question discusses something very similar. Duplicate?

link|improve this answer
1  
Yes I've tried that as well. If my conslusion from my tests is correct, the problem is that the ready() function is triggered while the DOM tree is not really ready yet.. – mrmclovin Jan 30 '11 at 11:42
Have you tried the plain JS as well, that's mentioned in the answer to the other question? – polarblau Jan 30 '11 at 11:48
2  
Yes it works with manual javascript, thank you! Had to do this: win.onload = function() { form = $(this.document.getElementById(form_id)); form.submit(function(evt){ – mrmclovin Jan 30 '11 at 15:31
feedback

Use window.parent in script on site, which you are loading and execute function defined in global (!) at first page.

Main page:

<html>
<head>
<script type="text/javascript">
    window.notify = function () {
        alert('runned from opened window');
    };
    window.onload = function() {
        document.getElementById('button').addEventListener('click', function() {
            window.open('test.html');
        }, false);
    };
</script>
</head>
<body>
<button id="button">Open window</button>
</body>

Opened page:

<html>
<head>
<script type="text/javascript">
    window.onload = function() {
        window.opener.notify()
    };
</script>
</head>
<body>
    Popup site
</body>
</html>
link|improve this answer
Thank you for the suggestion. However, I can't (don't want to) edit the target site which I'm opening! – mrmclovin Jan 30 '11 at 15:30
feedback

Your Answer

 
or
required, but never shown

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