Описание
Вес: 0.5 кг.1 кг. function viewdiv(id) { var el = document.getElementById(id); var link = document.getElementById('eightnineone'); if (el.style.display == "block") { el.style.display = "none"; link.innerText = link.getAttribute('data-text-hide'); } else { el.style.display = "block"; link.innerText = link.getAttribute('data-text-show'); } } function reloadPriceInList(product_id, qty){ var data = {}; data["change_attr"] = 0; data["qty"] = qty; if (prevAjaxHandler){ prevAjaxHandler.abort(); } prevAjaxHandler = jQuery.getJSON( "index.php?option=com_jshopping&controller=product&task=ajax_attrib_select_and_price&product_id="+product_id+"&ajax=1",data,function(json){jQuery(".product.productitem_"+product_id+".jshop_pricespan").html(json.price); } ); } Подробнее