Why can't I load an image from a JSON file when I create a new window in Javascript
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
add a comment |
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
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
add a comment |
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
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
javascript
edited Nov 24 '18 at 4:45
Foo
1
1
asked Nov 24 '18 at 3:48
SkyNetSkyNet
53
53
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
it because moviePoster
doesn't have innerHTML
set it to outerHTML
newWindow.document.write(moviePoster.outerHTML+ "<br>");
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
it because moviePoster
doesn't have innerHTML
set it to outerHTML
newWindow.document.write(moviePoster.outerHTML+ "<br>");
add a comment |
it because moviePoster
doesn't have innerHTML
set it to outerHTML
newWindow.document.write(moviePoster.outerHTML+ "<br>");
add a comment |
it because moviePoster
doesn't have innerHTML
set it to outerHTML
newWindow.document.write(moviePoster.outerHTML+ "<br>");
it because moviePoster
doesn't have innerHTML
set it to outerHTML
newWindow.document.write(moviePoster.outerHTML+ "<br>");
answered Nov 24 '18 at 4:22
ewwinkewwink
11.8k22239
11.8k22239
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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