Is there a way to use jQuery to append variables to a div? Below are my codes, but I am looking to display div tags in the 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>