vote up 3 vote down star
1

I'm trying to create an element dynamically using an HTML string. Here's a simple example using both prototype and DOM:

// HTML string
var s = '<li>text</li>';
// DOM
var el1 = document.createElement(s);
// prototype
var el2 = new Element(s);
$('mylist').appendChild(el1);
$('mylist').appendChild(el2);

Both approaches insert an empty listitem to the list.

I know that using prototype's Element as a constructor requires a tagName and an optional attributes parameter, but I figured it may let me pass in an HTML string too.

However, MSDN states "You can also specify all the attributes inside the createElement method by using an HTML string for the method argument."... so I'm not sure what the problem is.

And yes, i know i could do this easily in jquery, unfortunately we're not using jquery. Am i overlooking something really simple here?

flag

75% accept rate
Sorry, what are you trying to accomplish exactly? HTML string -> dom element? – Crescent Fresh Jan 30 at 2:28

2 Answers

vote up 3 vote down check

Should be obv but the link to that MSDN article is regarding an IE only feature.

Generally the following cross-browser trick is what all the libraries do to get DOM elements from an html string (with some extra work for IE [not shown here], to do with table related html strings like <td>s, <tr>s, <thead>s, etc):

// HTML string
var s = '<li>text</li>';

var div = document.createElement('div');
div.innerHTML = s;
var elements = div.childNodes;

Or var element = div.firstChild if you know you're getting a single root node.

I would recommend you stick to the library-approved method of creating elements from HTML strings though. Prototype has this feature too I'm sure, I just can't remember how to do it.

link|flag
thanks, that's exactly what i was looking for. – ob Jan 30 at 3:15
vote up 3 vote down

With Prototype, you can also do:

HTML:

<ul id="mylist"></ul>

JS:

$('mylist').insert('<li>text</li>');
link|flag

Your Answer

Get an OpenID
or

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