Gå til innholdet
$('.productlist__product').each(function() {
    if ( $(this).children('a').children('.offers').children('meta[data-stock]').attr('data-stock') == 0 ) {
        $(this).hide()
    }
})
/*  
var products = $('article.productlist__product');
$.each(products, function (indexInArray, valueOfElement) {
    if (parseInt($(valueOfElement).find('meta[data-stock]')[0].content) < 1) {
        $(valueOfElement).find('div.offers').before('Utsolgt');
    }
});
$('.productlist__product').each(function() {
    if ( $(this).children('a').children('.offers').children('meta[data-stock]').attr('data-stock') == 0 ) {
        $(this).hide()
    }
})
if ($('span.discount').children('span').html() == 'Midlertidig utsolgt') {
$('span.discount').parent('a').parent('article').hide();
}
*/