Why can't I load an image from a JSON file when I create a new window in Javascript





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















I am writing a program in JS that receives some information from a movies API (title, description, poster image, etc) and I display a list of the latest movie releases.



In this list I want to open a new window that displays the information of a specific movie when the user clicks on the poster image.



I've already figured out how to open a new window and display most of the data I want but I am not able to display the poster.



for (var i = 0; i < moviesObject.results.length; i++) {
var li = document.createElement('li');
var moviePoster = document.createElement('img');
var divOverview = document.createElement('div');
var divReleaseDate = document.createElement('div');

moviePoster.setAttribute('src', 'https://image.tmdb.org/t/p/w370_and_h556_bestv2' + moviesObject.results[i].poster_path);
li.innerHTML = '<strong>Title: </strong>' + moviesObject.results[i].title;
divOverview.innerHTML = '<strong>Overview: </strong>' + moviesObject.results[i].overview;
divReleaseDate.innerHTML = '<strong>Release Date: </strong>' + moviesObject.results[i].release_date + '<br><br>';
moviesList.appendChild(li);
moviesList.appendChild(moviePoster);
moviesList.appendChild(divOverview);
moviesList.appendChild(divReleaseDate);

moviePoster.addEventListener("click", function () {
var newWindow = window.open();
newWindow.document.open();
newWindow.document.write(li.innerHTML+ "<br>");
---> newWindow.document.write(); <-- here is where I have to display the poster
newWindow.document.write(divOverview.innerHTML+ "<br>");
newWindow.document.write(divReleaseDate.innerHTML+ "<br>");
newWindow.document.close();
});
}









share|improve this question

























  • Could you share the JSON you're using for this loop?

    – Mav
    Nov 24 '18 at 3:58











  • I can upload a picture of the part i'm using. imgur.com/6kc7mnd

    – SkyNet
    Nov 24 '18 at 4:19


















0















I am writing a program in JS that receives some information from a movies API (title, description, poster image, etc) and I display a list of the latest movie releases.



In this list I want to open a new window that displays the information of a specific movie when the user clicks on the poster image.



I've already figured out how to open a new window and display most of the data I want but I am not able to display the poster.



for (var i = 0; i < moviesObject.results.length; i++) {
var li = document.createElement('li');
var moviePoster = document.createElement('img');
var divOverview = document.createElement('div');
var divReleaseDate = document.createElement('div');

moviePoster.setAttribute('src', 'https://image.tmdb.org/t/p/w370_and_h556_bestv2' + moviesObject.results[i].poster_path);
li.innerHTML = '<strong>Title: </strong>' + moviesObject.results[i].title;
divOverview.innerHTML = '<strong>Overview: </strong>' + moviesObject.results[i].overview;
divReleaseDate.innerHTML = '<strong>Release Date: </strong>' + moviesObject.results[i].release_date + '<br><br>';
moviesList.appendChild(li);
moviesList.appendChild(moviePoster);
moviesList.appendChild(divOverview);
moviesList.appendChild(divReleaseDate);

moviePoster.addEventListener("click", function () {
var newWindow = window.open();
newWindow.document.open();
newWindow.document.write(li.innerHTML+ "<br>");
---> newWindow.document.write(); <-- here is where I have to display the poster
newWindow.document.write(divOverview.innerHTML+ "<br>");
newWindow.document.write(divReleaseDate.innerHTML+ "<br>");
newWindow.document.close();
});
}









share|improve this question

























  • Could you share the JSON you're using for this loop?

    – Mav
    Nov 24 '18 at 3:58











  • I can upload a picture of the part i'm using. imgur.com/6kc7mnd

    – SkyNet
    Nov 24 '18 at 4:19














0












0








0








I am writing a program in JS that receives some information from a movies API (title, description, poster image, etc) and I display a list of the latest movie releases.



In this list I want to open a new window that displays the information of a specific movie when the user clicks on the poster image.



I've already figured out how to open a new window and display most of the data I want but I am not able to display the poster.



for (var i = 0; i < moviesObject.results.length; i++) {
var li = document.createElement('li');
var moviePoster = document.createElement('img');
var divOverview = document.createElement('div');
var divReleaseDate = document.createElement('div');

moviePoster.setAttribute('src', 'https://image.tmdb.org/t/p/w370_and_h556_bestv2' + moviesObject.results[i].poster_path);
li.innerHTML = '<strong>Title: </strong>' + moviesObject.results[i].title;
divOverview.innerHTML = '<strong>Overview: </strong>' + moviesObject.results[i].overview;
divReleaseDate.innerHTML = '<strong>Release Date: </strong>' + moviesObject.results[i].release_date + '<br><br>';
moviesList.appendChild(li);
moviesList.appendChild(moviePoster);
moviesList.appendChild(divOverview);
moviesList.appendChild(divReleaseDate);

moviePoster.addEventListener("click", function () {
var newWindow = window.open();
newWindow.document.open();
newWindow.document.write(li.innerHTML+ "<br>");
---> newWindow.document.write(); <-- here is where I have to display the poster
newWindow.document.write(divOverview.innerHTML+ "<br>");
newWindow.document.write(divReleaseDate.innerHTML+ "<br>");
newWindow.document.close();
});
}









share|improve this question
















I am writing a program in JS that receives some information from a movies API (title, description, poster image, etc) and I display a list of the latest movie releases.



In this list I want to open a new window that displays the information of a specific movie when the user clicks on the poster image.



I've already figured out how to open a new window and display most of the data I want but I am not able to display the poster.



for (var i = 0; i < moviesObject.results.length; i++) {
var li = document.createElement('li');
var moviePoster = document.createElement('img');
var divOverview = document.createElement('div');
var divReleaseDate = document.createElement('div');

moviePoster.setAttribute('src', 'https://image.tmdb.org/t/p/w370_and_h556_bestv2' + moviesObject.results[i].poster_path);
li.innerHTML = '<strong>Title: </strong>' + moviesObject.results[i].title;
divOverview.innerHTML = '<strong>Overview: </strong>' + moviesObject.results[i].overview;
divReleaseDate.innerHTML = '<strong>Release Date: </strong>' + moviesObject.results[i].release_date + '<br><br>';
moviesList.appendChild(li);
moviesList.appendChild(moviePoster);
moviesList.appendChild(divOverview);
moviesList.appendChild(divReleaseDate);

moviePoster.addEventListener("click", function () {
var newWindow = window.open();
newWindow.document.open();
newWindow.document.write(li.innerHTML+ "<br>");
---> newWindow.document.write(); <-- here is where I have to display the poster
newWindow.document.write(divOverview.innerHTML+ "<br>");
newWindow.document.write(divReleaseDate.innerHTML+ "<br>");
newWindow.document.close();
});
}






javascript






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 24 '18 at 4:45









Foo

1




1










asked Nov 24 '18 at 3:48









SkyNetSkyNet

73




73













  • Could you share the JSON you're using for this loop?

    – Mav
    Nov 24 '18 at 3:58











  • I can upload a picture of the part i'm using. imgur.com/6kc7mnd

    – SkyNet
    Nov 24 '18 at 4:19



















  • Could you share the JSON you're using for this loop?

    – Mav
    Nov 24 '18 at 3:58











  • I can upload a picture of the part i'm using. imgur.com/6kc7mnd

    – SkyNet
    Nov 24 '18 at 4:19

















Could you share the JSON you're using for this loop?

– Mav
Nov 24 '18 at 3:58





Could you share the JSON you're using for this loop?

– Mav
Nov 24 '18 at 3:58













I can upload a picture of the part i'm using. imgur.com/6kc7mnd

– SkyNet
Nov 24 '18 at 4:19





I can upload a picture of the part i'm using. imgur.com/6kc7mnd

– SkyNet
Nov 24 '18 at 4:19












1 Answer
1






active

oldest

votes


















2














it because moviePoster doesn't have innerHTML set it to outerHTML



newWindow.document.write(moviePoster.outerHTML+ "<br>");





share|improve this answer
























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53455002%2fwhy-cant-i-load-an-image-from-a-json-file-when-i-create-a-new-window-in-javascr%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    2














    it because moviePoster doesn't have innerHTML set it to outerHTML



    newWindow.document.write(moviePoster.outerHTML+ "<br>");





    share|improve this answer




























      2














      it because moviePoster doesn't have innerHTML set it to outerHTML



      newWindow.document.write(moviePoster.outerHTML+ "<br>");





      share|improve this answer


























        2












        2








        2







        it because moviePoster doesn't have innerHTML set it to outerHTML



        newWindow.document.write(moviePoster.outerHTML+ "<br>");





        share|improve this answer













        it because moviePoster doesn't have innerHTML set it to outerHTML



        newWindow.document.write(moviePoster.outerHTML+ "<br>");






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 24 '18 at 4:22









        ewwinkewwink

        12.3k22441




        12.3k22441
































            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53455002%2fwhy-cant-i-load-an-image-from-a-json-file-when-i-create-a-new-window-in-javascr%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            這個網誌中的熱門文章

            Tangent Lines Diagram Along Smooth Curve

            Yusuf al-Mu'taman ibn Hud

            Zucchini