I have something like this:
$(document).ready(function(){
var veeCountries = ["America", "Japan"];
$.each(veeCountries, function( ? ) {
$("#content").html("<p>" + value + "</p>");
});
});
I'm trying to output something like this:
<p>America</p>
<p>Japan</p>
But I'm stuck, what's the best and easiest way of doing this?
" + value + "
" + value + ""` – Pranav C Balan Jan 17 '14 at 16:41