chuanxshi / javascript-patterns

JavaScript Design Patterns

Home Page:http://shichuan.github.io/javascript-patterns

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error in JQuery append

archaeron opened this issue · comments

https://github.com/shichuan/javascript-patterns/blob/master/jquery-patterns/append.html#L23

I think this line:

var newLI = '<li>' + item + '</li>';

should be like this:

var newLI = $('<li>' + item + '</li>');

@archaeron thanx for pointing it out :)

this is now fixed at 4e339c7, closing issue

welcome :)