//variable del subtotal
var n = $(".cart_total_price strong").text().replace('$', '').replace('.', '');
//variable cantidad mínima
var cantidad = 30000;
//si el precio es menor al subtotal
if( parseInt(n) < cantidad ) {
$("input.next").hide();
$(".cart_table").after("<span class='cart_msn'>Recuerda que la compra mínina es de $30.000 pesos.</span>");
} else {
$("input.next").show();
}
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.