سؤال

I got a problem with this little code from a popup

function edit(titre,texte) {
    window.opener.document.getElementById('corp').innerHTML +=
            '<h2>'+titre.value+'</h2> <p>'+texte.value+'</p>';
    window.close();
}

Nothing happens when this script is launched. I want to change the contents of myDiv in the opener window.

I'm using Chrome.

لا يوجد حل صحيح

نصائح أخرى

Opener is property of the window, not of the document, so it should be:

window.opener.document...
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top