Create elements in a new document using jQuery
up vote
0
down vote
favorite
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 |
up vote
0
down vote
favorite
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 |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
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 at 9:39
wanttobeprofessional
87531223
87531223
asked Nov 22 at 7:18
Barzee
3581420
3581420
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
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 |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
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 |
up vote
0
down vote
accepted
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 |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
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 at 7:24
Ahmad
7,31943462
7,31943462
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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