В вашем коде отсутствуют скобки, попробуйте это?
var theList = $('#someList'),
i = 0, // i isn't defined in the code you displayed, is it in a loop by chance?
content = '<li id="content' + i + '"><a href="Settings">Put Something Here</a></li>';
theList.append(content);