I have a DIV. I want to dynamically generate a bulleted list inside the DIV using jQuery with a items list I have with me
for (cnt = 0; cnt < someList.length; cnt++) {
someList[cnt].FirstName + ":" + someList[cnt].LastName + "<br/>"
// what to write here?
}
Thanks!