vote up 1 vote down star

Instead of tediously search for workarounds for each type of attribute and event when using the following syntax:

   elem = document.createElement("div");
   elem.id = 'myID';
   elem.innerHTML = ' my Text '
   document.body.insertBefore(elem,document.body.childNodes[0]);

Is there a way where I can just declare the entire HTML element as a string? like:

  elem = document.createElement("<div id='myID'> my Text </div>");
  document.body.insertBefore(elem,document.body.childNodes[0]);
flag

3 Answers

vote up 1 vote down check

Instead of directly messing with innerHTML it might be better to create a fragment and then insert that:

function create(htmlStr) {
    var frag = document.createDocumentFragment(),
        temp = document.createElement('div');
    temp.innerHTML = htmlStr;
    while (temp.firstChild) {
        frag.appendChild(temp.firstChild);
    }
    return frag;
}

var fragment = create('<div>Hello!</div><p>...</p>');
// You can use native DOM methods to insert the fragment:
document.body.insertBefore(fragment, document.body.childNodes[0]);

Benefits:

  1. You can use native DOM methods for insertion such as insertBefore, appendChild etc.
  2. You have access to the actual DOM nodes before they're inserted; you can access the fragment's childNodes object.
  3. Using document fragments is very quick; faster than creating elements outside of the DOM and in certain situations faster than innerHTML.


Even though innerHTML is used within the function, it's all happening outside of the DOM so it's much faster than you'd think...

link|flag
1  
I bet this createDocumentFragment() wouldn't be as good as the "legacy" innerHTML. – Jeremy Rudd May 2 at 14:12
I really would like backward compatibility, so how could I use this alongside innerHTML, like I check if this method is not null, maybe? – Jeremy Rudd May 2 at 14:12
1  
This method works in all modern browsers. For IE 5.5 and below you could perform a check like:: if (document.createDocumentFragment) { create('...'); } else { /* Use innerHTML perhaps */ } – J-P May 2 at 14:41
Exactly my point, thanks for the code snippet! I like your method since its quick, so making this the default behavior on all modern browsers is preferable. – Jeremy Rudd May 2 at 15:49
1  
Booo. All kinds of fail on the likes of mySelect.appendChild(create('<option>Two</option>')) or myTable.tBodies[0].appendChild(create('<tr><td>3.1</td><td>3.2</td></tr>')) – Crescent Fresh May 2 at 18:33
show 5 more comments
vote up 6 vote down

In old school JavaScript, you could do this:

document.getElementsByTagName('body')[0].innerHTML = '<p id="foo">Some HTML</p>' + document.getElementsByTagName('body')[0].innerHTML;

In response to your comment:

[...] I was interested in declaring the source of a new element's attributes and events, not the innerHTML of an element.

You need to inject the new HTML into the DOM, though; that's why innerHTML is used in the old school JavaScript example. The innerHTML of the BODY element is prepended with the new HTML. We're not really touching the existing HTML inside the BODY.

I'll rewrite the abovementioned example to clarify this:

var newElement = '<p id="foo">This is some dynamically added HTML. Yay!</p>';
var bodyElement = document.getElementsByTagName('body')[0];
bodyElement.innerHTML = newElement + bodyElement.innerHTML;
// note that += cannot be used here; this would result in 'NaN'

Using a JavaScript framework would make this code much less verbose and improve readability. For example, jQuery allows you to do the following:

$('body').prepend('<p id="foo">Some HTML</p>');
link|flag
Anyway to do this without a framework? – Jeremy Rudd May 2 at 10:04
Sure, check the edit. – Mathias Bynens May 2 at 10:05
Pretty good. But I was interested in declaring the source of a new element's attributes and events, not the innerHTML of an element. – Jeremy Rudd May 2 at 10:11
1  
document.getElementsByTagName('body')[0] can indeed be replaced by document.body, good point. However, if you want to prepend or append the new HTML to another existing element instead of the BODY, you'll have to use document.getElementById() and/or document.getElementsByTagName(); that's why I used it in the example. – Mathias Bynens May 2 at 10:37
1  
@JimmyP: What rubbish! The very purpose of this question is to be able to directly insert HTML as strings instead of playing around with functions to construct it, attrib by attrib, node by node, element by element. – Jeremy Rudd May 2 at 14:11
show 7 more comments
vote up 0 vote down

The above answers are great, another approach would be to use Jquery (not worth it just for this but you may find it useful in many other ways):

$("body").prepend("<div id='myID'> my Text </div>");

Lovely, isn't it?

link|flag
Hey mister, the jQuery method has already been posted above, in the "accepted" answer, and was as a matter of fact the first reply to this question! – Jeremy Rudd May 2 at 15:47
Oops, somehow I missed that... – ferocious May 2 at 18:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.