$("<ol>").appendTo(some_div);
$.each(map, function(i,example){
  $("<li>" + example + "</li>").appendTo(some_div)
});
$("</ol>").appendTo(some_div);

expected: <ol><li>example1</li><li>example2</li></ol>

actual: <ol></ol><li>example1</li><li>example2</li>

Any idea why this happens?

link|improve this question

ur " are off... – Neal Mar 28 '11 at 17:45
@Neal - I just "fixed" that missing quotation with an edit (almost everything was red and impossible to read). I didn't consider that that could be part of the issue. Whoops! – McStretch Mar 28 '11 at 17:47
@McStretch lol yea. thats y i ddnt fix it lol – Neal Mar 28 '11 at 17:48
4  
4 answers with 12 votes in 6 minutes. Jquery questions are everyone's favorite. – RSG Mar 28 '11 at 17:51
@McStretch and @Neal Thanks! – Russell Mar 28 '11 at 17:51
show 1 more comment
feedback

4 Answers

up vote 11 down vote accepted

You are doing DOM operations and not string operations. And $("<ol>") does already create an OL element and not just a string containing <ol>.

You need to append the LI elements to the newly created OL element:

var ol = $("<ol>").appendTo(some_div);
$.each(map, function(i,example){
    $("<li>" + example + "</li>").appendTo(ol);
});
link|improve this answer
1  
For better browser performance, it's actually preferable to construct the entire object before doing the appendTo. – calvinf Mar 28 '11 at 18:54
@calvinf: Thanks, good remark. – Gumbo Mar 28 '11 at 18:57
feedback

You should append your <li> entries to your <ol>. Otherwise you can't know how browser is going to handle your code. Additionally, you should append <ol></ol> instead of separate <ol> and </ol>. jQuery's .append and .appendTo are not string operations, those are modifying page DOM tree.

$("<ol></ol>").appendTo(some_div);
olelement = $(some_div).find("<ol>")
$.each(map, function(i,example){
  $("<li>" + example + "</li>").appendTo(olelement);
});
link|improve this answer
2  
Not very efficient to find the inserted ol for each li element. You should cache it in a variable.. Also no need to specify the closing tag, it is assumed by jQuery. – Gaby aka G. Petrioli Mar 28 '11 at 17:49
feedback

This line

$("<ol>").appendTo(some_div);

isn't simply adding an open tag as you think it is. jQuery is building an ordered list element and adding it to some_div. Likewise, your $.each is appending list item elements to some_div, so they're ending up as siblings of the list. You need to append the list items to the list element.

link|improve this answer
feedback

I believe $("<ol>").appendTo creates the full <ol></ol> tag. Either append the li items to the OL you've created, or create a long string and then do one append. Append is an expensive operation, if you're going to have 10s or more list items you should do the latter.

link|improve this answer
No, .append is not expensive. Adding hundreds of elements using .append is not performance issue for any modern browser. – Olli Mar 28 '11 at 17:52
Olli, please help me understand your comment/downvote with respect to the given links and other SO thread above. – RSG Mar 28 '11 at 17:58
feedback

Your Answer

 
or
required, but never shown

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