<input class='singleInfo__price' value='0'>
<button class='plus'>+</button>
$(".plus").click(function() {
var $price = $(".singleInfo__price");
$price.val(parseInt($price.val()) + 1);
$price.change();
});
This Pen doesn't use any external CSS resources.