How to append variables to div with jquery? There is my codes below. But I want to show div tags in append. For example; .append("" + p + "")
var image = item.image;
var label = item.label;
var price = item.price;
var vendor = item.vendor;
<div class="image">
<div>image</div>
<div class="labelPrice">
<div>label</div>
<div>price</div>
</div>
<div class="vendor">vendor</div>
</div>