Mounting
Minimum screen size *
38.1 cm (15")
$(function() {
var title = $('#page_title').text();
$('title').text(title);
//remove add to basket is stock = 0
$('.CRMProdItemDetailStock > span.v').each(function(){
if ($(this).text()==='0'){
$(this).parent().parent().find($('.CRMProdItemAddToBasket')).remove();
}
})
});