30 lines
695 B
JavaScript
30 lines
695 B
JavaScript
/*
|
|
Name: Product Landing
|
|
Written by: Okler Themes - (http://www.okler.net)
|
|
Theme Version: 9.9.2
|
|
*/
|
|
|
|
(function( $ ) {
|
|
|
|
'use strict';
|
|
|
|
/*
|
|
Quantity
|
|
*/
|
|
$('.quantity .plus').on('click',function(){
|
|
var $qty=$(this).parents('.quantity').find('.qty');
|
|
var currentVal = parseInt($qty.val());
|
|
if (!isNaN(currentVal)) {
|
|
$qty.val(currentVal + 1);
|
|
}
|
|
});
|
|
|
|
$('.quantity .minus').on('click',function(){
|
|
var $qty=$(this).parents('.quantity').find('.qty');
|
|
var currentVal = parseInt($qty.val());
|
|
if (!isNaN(currentVal) && currentVal > 0) {
|
|
$qty.val(currentVal - 1);
|
|
}
|
|
});
|
|
|
|
}).apply( this, [ jQuery ]); |