Какой метод аналогичный методу jquery
for(var i=0;i < products.length;i++) {
var prod = products[i].goods,
count = products[i].count;
template = $($('#cart_row_template tbody').html())
console.log(template)
template.data('product', prod);
template.find('.cart_product img').attr('src', prod.url);
template.find('.cart_description a').html(prod.name);
template.find('.cart_price p').html('$' +prod.price);
template.find('.cart_quantity_input').val(count);
template.find('.cart_price p').html('$' +bag.getProductSum(prod.name));
table.append(template)
}
find можно использовать в js ?
Или как можно переписать код под js?