function change_article_attributes(this_list){ alert("Achtung: Durch das Ändern dieser Option könnten sich auch die Verfügbarkeit, der Preis und die Lieferfrist ändern."); var new_attributes = $(this_list).find("option:selected").attr("class").split("|"); var new_discount = $("#discount").html().split("|"); var new_price = new_attributes[0]-(new_discount[1] == "amount" ? new_discount[0] : new_attributes[0]*(new_discount[0]/100)); var new_delivery_time = (new_attributes[3] == "0" ? "Sofort lieferbar" : new_attributes[3] + (new_attributes[3] == "1" ? " Tag" : " Tage")); var new_quantity = ((new_attributes[2] == "1" || new_attributes[1] == "-1") ? "99" : new_attributes[1]); var new_quantity_list = ""; var new_availability = (new_attributes[1] == "0" ? "style/img/icons/neutral.gif" : "style/img/icons/positive.gif"); var new_availability_text = (new_attributes[1] == "0" ? "Auf Anfrage" : "Der Artikel ist verfügbar"); for(i=1;i<=new_quantity;i++) new_quantity_list += "<option value=\"" + i + "\">" + i + "</option>"; $("#article_price").html(new_price.toFixed(2)); $("#article_delivery_time").html(new_delivery_time); $("select[name=article_quantity]").html(new_quantity_list); $("#article_availability").attr("src","http://www.skayo.ch/" + new_availability).attr("title",new_availability_text); } $(document).ready(function(){ if($("select[name^=article_]").length > 1){ var max_width = 0; for(i=0;i<$("select[name^=article_]").length;i++) if($("select[name^=article_]:eq(" + i + ")").width() > max_width) max_width = $("select[name^=article_]:eq(" + i + ")").width(); $("select[name^=article_]").css("width",max_width); } });
