I'm trying to seperate a list with a line break but neither "\n" nor a br tag are working. Anybody know why?
var c_list=['One','Two','Three']
for (var x in c_list){
holder_string += c_list[counter]
holder_string += "\n"
counter++
$("#list").text(holder_string);
}