Hi,
Depending on amout of <div clas="product"></div>
I'm trying to set width for .productholder
<div class="productholder">
<div clas="product"></div>
<div clas="product"></div>
<div clas="product"></div>
<div clas="product"></div>
<div clas="product"></div>
</div>
I can set fix width for .product if this will help.
I have tried this, but don't seems to be working:
var width = 0;
$('.product').each(function() {
width += $(this).outerWidth( true );
});
$('.productholder').css('width', width + 250);
Thank you for your help in advance.