<?
$arElement["ID"]=172;
$arElement["ADD_URL"]="http/shop/"
?>
<a href="<?=$arElement["ADD_URL"]?>" id="1">КЛИК</a>
<select name='myvalue' id="sel<?=$arElement["ID"]?>">
<option selected="selected" value=1>100 г</option>
<option value=2>200 г</option>
<option value=3>300 г</option>
<option value=4>400 г</option>
<option value=5>500 г</option>
</select>
<script type="text/javascript">
$(function(){
$('#sel<?=$arElement["ID"]?>').change(function(){
$('a[href="<?=$arElement["ADD_URL"]?>"]').attr('id', $('select#sel<?=$arElement["ID"]?>').attr('value'));
});
});
</script> |