megwoo
9/10/2015 - 1:17 AM

Jquery to remove all decimals

Jquery to remove all decimals

// remove decimals	
	$('.remove-decimals').find('.price').each(function() {
		$(this).html($(this).html().replace(".00",""));
	});