ACT NOW AND GET RID OF UNSIGHTLY C-SECTION SCARS. FREE SHIPPING!
C-SECTION SCAR REDUCTION DRAMATICALLY REDUCE THE APPEARANCE OF SCARS.
Simply clean the affected area, cut a self-adhesive silicone gel patch to the right size and stick it on the scar. Wash the patch a few times per day and re-apply. Works with other scars too! Free Shipping.
WAS $19.95
NOW ONLY $13.95
");
var down = $("").attr('class', 'btn btn-' + settings.downClass).click(function () {
setText(parseInt(clone.val()) - 1);
});
var up = $("").attr('class', 'btn btn-' + settings.upClass).click(function () {
setText(parseInt(clone.val()) + 1);
});
$("").append(down).appendTo(group);
clone.appendTo(group);
if (clone) {
clone.css('text-align', 'center');
}
$("").append(up).appendTo(group);
// remove spins from original
clone.prop('type', 'text').keydown(function (e) {
if ($.inArray(e.keyCode, [46, 8, 9, 27, 13, 110, 190]) !== -1 ||
(e.keyCode == 65 && e.ctrlKey === true) ||
(e.keyCode >= 35 && e.keyCode 57)) && (e.keyCode 105)) {
e.preventDefault();
}
var c = String.fromCharCode(e.which);
var n = parseInt(clone.val() + c);
//if ((min && n max)) {
// e.preventDefault();
//}
});
clone.prop('type', 'text').blur(function (e) {
var c = String.fromCharCode(e.which);
var n = parseInt(clone.val() + c);
if ((min && n max) {
setText(max);
}
});
self.replaceWith(group);
});
};
}(jQuery));
$('.bootstrapN').bootstrapNumber();
$('#colorful').bootstrapNumber({
upClass: 'success',
downClass: 'danger'
});