woocommerce/assets/js/frontend/woocommerce.js

57 lines
1.7 KiB
JavaScript
Raw Normal View History

jQuery(document).ready(function($) {
// Orderby
2013-06-11 12:31:41 +00:00
$('.woocommerce-ordering').on( 'change', 'select.orderby', function() {
$(this).closest('form').submit();
});
2012-12-06 15:44:22 +00:00
// Quantity buttons
$("div.quantity:not(.buttons_added), td.quantity:not(.buttons_added)").addClass('buttons_added').append('<input type="button" value="+" class="plus" />').prepend('<input type="button" value="-" class="minus" />');
2012-12-06 15:44:22 +00:00
// Target quantity inputs on product pages
$("input.qty:not(.product-quantity input.qty)").each(function(){
var min = parseFloat( $(this).attr('min') );
2012-12-06 15:44:22 +00:00
if ( min && min > 0 && parseFloat( $(this).val() ) < min ) {
$(this).val( min );
}
});
2012-12-06 15:44:22 +00:00
2012-12-28 13:02:12 +00:00
$(document).on( 'click', '.plus, .minus', function() {
2012-12-06 15:44:22 +00:00
// Get values
var $qty = $(this).closest('.quantity').find(".qty");
var currentVal = parseFloat( $qty.val() );
var max = parseFloat( $qty.attr('max') );
var min = parseFloat( $qty.attr('min') );
var step = $qty.attr('step');
2012-12-06 15:44:22 +00:00
// Format values
if ( ! currentVal || currentVal == "" || currentVal == "NaN" ) currentVal = 0;
if ( max == "" || max == "NaN" ) max = '';
if ( min == "" || min == "NaN" ) min = 0;
2012-12-06 15:19:48 +00:00
if ( step == 'any' || step == "" || step == undefined || parseFloat( step ) == "NaN" ) step = 1;
2012-12-06 15:44:22 +00:00
// Change the value
if ( $(this).is('.plus') ) {
2012-12-06 15:44:22 +00:00
if ( max && ( max == currentVal || currentVal > max ) ) {
2012-12-06 15:44:22 +00:00
$qty.val( max );
} else {
2012-12-06 15:44:22 +00:00
$qty.val( currentVal + parseFloat( step ) );
}
2012-12-06 15:44:22 +00:00
} else {
2012-12-06 15:44:22 +00:00
if ( min && ( min==currentVal || currentVal < min ) ) {
2012-12-06 15:44:22 +00:00
$qty.val( min );
} else if ( currentVal > 0 ) {
$qty.val( currentVal - parseFloat( step ) );
}
2012-12-06 15:44:22 +00:00
}
2012-12-06 15:44:22 +00:00
// Trigger change event
$qty.trigger('change');
});
});