Create elements in a new document using jQuery
Using plain JavaScript (without jquery), I can open a new window (or tab) and write a minimal HTML document into that window like this:
var minimal = '<!DOCTYPE HTML>n' +
'<html>n' +
'<head>n' +
'<meta charset="utf-8">n' +
'<title>Title Here</title>n' +
'</head>n' +
'<body>n' +
'</body>n' +
'</html>n';
var win = window.open();
var doc = win.document;
doc.open('text/html', true);
doc.write(minimal);
doc.close();
Then I can use plain JavaScript to dynamically create and add children elements to the new document like this:
var body = doc.getElementsByTagName('body')[0];
var div = doc.createElement('div');
div.innerHTML = 'Hi Mom!';
body.appendChild(div);
Notice in the above code that I am using doc
and not document
which creates a div in the new document.
My understanding of jquery is that this code
var div = $('<div/>');
will create a div in the current document and not in the new document, and a div created in the current document cannot be added to the new document. Is there some way to get jquery to create elements in a new document as shown in my plain JavaScript code above?
javascript jquery dom
add a comment |
Using plain JavaScript (without jquery), I can open a new window (or tab) and write a minimal HTML document into that window like this:
var minimal = '<!DOCTYPE HTML>n' +
'<html>n' +
'<head>n' +
'<meta charset="utf-8">n' +
'<title>Title Here</title>n' +
'</head>n' +
'<body>n' +
'</body>n' +
'</html>n';
var win = window.open();
var doc = win.document;
doc.open('text/html', true);
doc.write(minimal);
doc.close();
Then I can use plain JavaScript to dynamically create and add children elements to the new document like this:
var body = doc.getElementsByTagName('body')[0];
var div = doc.createElement('div');
div.innerHTML = 'Hi Mom!';
body.appendChild(div);
Notice in the above code that I am using doc
and not document
which creates a div in the new document.
My understanding of jquery is that this code
var div = $('<div/>');
will create a div in the current document and not in the new document, and a div created in the current document cannot be added to the new document. Is there some way to get jquery to create elements in a new document as shown in my plain JavaScript code above?
javascript jquery dom
add a comment |
Using plain JavaScript (without jquery), I can open a new window (or tab) and write a minimal HTML document into that window like this:
var minimal = '<!DOCTYPE HTML>n' +
'<html>n' +
'<head>n' +
'<meta charset="utf-8">n' +
'<title>Title Here</title>n' +
'</head>n' +
'<body>n' +
'</body>n' +
'</html>n';
var win = window.open();
var doc = win.document;
doc.open('text/html', true);
doc.write(minimal);
doc.close();
Then I can use plain JavaScript to dynamically create and add children elements to the new document like this:
var body = doc.getElementsByTagName('body')[0];
var div = doc.createElement('div');
div.innerHTML = 'Hi Mom!';
body.appendChild(div);
Notice in the above code that I am using doc
and not document
which creates a div in the new document.
My understanding of jquery is that this code
var div = $('<div/>');
will create a div in the current document and not in the new document, and a div created in the current document cannot be added to the new document. Is there some way to get jquery to create elements in a new document as shown in my plain JavaScript code above?
javascript jquery dom
Using plain JavaScript (without jquery), I can open a new window (or tab) and write a minimal HTML document into that window like this:
var minimal = '<!DOCTYPE HTML>n' +
'<html>n' +
'<head>n' +
'<meta charset="utf-8">n' +
'<title>Title Here</title>n' +
'</head>n' +
'<body>n' +
'</body>n' +
'</html>n';
var win = window.open();
var doc = win.document;
doc.open('text/html', true);
doc.write(minimal);
doc.close();
Then I can use plain JavaScript to dynamically create and add children elements to the new document like this:
var body = doc.getElementsByTagName('body')[0];
var div = doc.createElement('div');
div.innerHTML = 'Hi Mom!';
body.appendChild(div);
Notice in the above code that I am using doc
and not document
which creates a div in the new document.
My understanding of jquery is that this code
var div = $('<div/>');
will create a div in the current document and not in the new document, and a div created in the current document cannot be added to the new document. Is there some way to get jquery to create elements in a new document as shown in my plain JavaScript code above?
javascript jquery dom
javascript jquery dom
edited Nov 22 '18 at 9:39
wanttobeprofessional
1,03131323
1,03131323
asked Nov 22 '18 at 7:18
BarzeeBarzee
3651520
3651520
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
dynamically creating DOM elements without attaching/parenting them to other DOM elements will be discarded.
var div = $('<div></div>'); // will create a div and wait for you to append it
so you can say:
div.appendTo("body"); // this will append it body
or you could say:
div.appendTo(win.document); // the div will be appended somewhere else
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%2f53425686%2fcreate-elements-in-a-new-document-using-jquery%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
dynamically creating DOM elements without attaching/parenting them to other DOM elements will be discarded.
var div = $('<div></div>'); // will create a div and wait for you to append it
so you can say:
div.appendTo("body"); // this will append it body
or you could say:
div.appendTo(win.document); // the div will be appended somewhere else
add a comment |
dynamically creating DOM elements without attaching/parenting them to other DOM elements will be discarded.
var div = $('<div></div>'); // will create a div and wait for you to append it
so you can say:
div.appendTo("body"); // this will append it body
or you could say:
div.appendTo(win.document); // the div will be appended somewhere else
add a comment |
dynamically creating DOM elements without attaching/parenting them to other DOM elements will be discarded.
var div = $('<div></div>'); // will create a div and wait for you to append it
so you can say:
div.appendTo("body"); // this will append it body
or you could say:
div.appendTo(win.document); // the div will be appended somewhere else
dynamically creating DOM elements without attaching/parenting them to other DOM elements will be discarded.
var div = $('<div></div>'); // will create a div and wait for you to append it
so you can say:
div.appendTo("body"); // this will append it body
or you could say:
div.appendTo(win.document); // the div will be appended somewhere else
answered Nov 22 '18 at 7:24
AhmadAhmad
8,28043663
8,28043663
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%2f53425686%2fcreate-elements-in-a-new-document-using-jquery%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