Добрый вечер! суть такая что есть скрип:
<script type="text/javascript">
jQuery("#button2").click(function(){
jQuery("#product_tabs_related_tabbed").addClass("active");
jQuery("#product_tabs_description_tabbed").removeClass("active");
jQuery("#options_18_3").attr("checked","checked");
jQuery("#options_18_2").removeAttr("checked");
jQuery("#product_tabs_description_tabbed_contents").css("display", "none");
jQuery("#product_tabs_related_tabbed_contents").css("display", "block");
opConfig.reloadPrice();
});
</script>
<script type="text/javascript">
jQuery("#options_18_2").click(function(){
jQuery("#options_18_3").removeAttr("checked");
});
</script>
в рамках привязки к определенным ID или классам, он работает отлично, но мне надо каким-то образом отвязаться от этих классов или ID, подскажите как поправить данный код чтоб вместо 18_3 или же 18_2 стояла какая-то переменная или как-то так, а то жесткая привязка портит все дело
Спасибо