require('child_process').exec('SumatraPDF.exe', () => null)
<svg width="100" height="100" baseProfile="full" xmlns="http://www.w3.org/2000/svg">
<polygon points="0,0 100,0 100,12.5" fill='white' />
<polygon points="0,100 100,100 0,87.5" fill='#f4f4f4' />
</svg>
$('.count-down').click(function () {
var count = parseInt($input.val()) - 1;
count = count < 1 ? 1 : count;
$input.val(count);
var priceP = parseInt($('.product--p').text());
$('.price-tires').text(priceP * count);
$input.change();
return false;
});
.faq_text { height: 132px; }