Hi,
I am dynamically adding SPAN tag to HTML DIV.
For example
<div id ='dvNames'></div>
I want to add span tag and output should look as follows
ADNAAN
NASIR
ABDUL
Right now it is displaying
ADNAANNASIRABDUL
I tried using
dvNames.append("<br />");
But it is not working. Please help